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.

feat(client): add public vacancy browsing and filtering

+20
apps/client/src/features/vacancies/queries/public-vacancies.graphql

This is a binary file and will not be displayed.

+20
apps/client/src/features/vacancies/queries/vacancy-filter-options.graphql
··· 1 + query VacancyFilterOptions { 2 + me { 3 + vacancies { 4 + edges { 5 + node { 6 + id 7 + company { 8 + id 9 + name 10 + } 11 + level { 12 + id 13 + name 14 + } 15 + location 16 + } 17 + } 18 + } 19 + } 20 + }