because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(graphql): update me.graphql query structure

- Update me.graphql to match the new GraphQL schema structure
- Ensure compatibility with the updated organization and role fields

+23
+23
apps/client/src/graphql/features/user/me.graphql
··· 18 18 name 19 19 email 20 20 createdAt 21 + experience { 22 + id 23 + startDate 24 + endDate 25 + description 26 + company { 27 + id 28 + name 29 + website 30 + } 31 + role { 32 + id 33 + name 34 + } 35 + level { 36 + id 37 + name 38 + } 39 + skills { 40 + id 41 + name 42 + } 43 + } 21 44 } 22 45 } 23 46 }