mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 01:46:07 +00:00
35 lines
618 B
GraphQL
35 lines
618 B
GraphQL
#import './fragments.graphql'
|
|
|
|
query projectBrandings {
|
|
projectBrandings {
|
|
...ProjectBrandingCommonFields
|
|
}
|
|
}
|
|
|
|
mutation upsertProjectBranding($input: ProjectBrandingInput!) {
|
|
upsertProjectBranding(input: $input) {
|
|
...ProjectBrandingCommonFields
|
|
}
|
|
}
|
|
|
|
mutation deleteProjectBranding($id: ID!) {
|
|
deleteProjectBranding(id: $id)
|
|
}
|
|
|
|
query spaces($page: Int!, $limit: Int!) {
|
|
spaces(page: $page, limit: $limit) {
|
|
pagination {
|
|
...PaginationFields
|
|
}
|
|
results {
|
|
...SpaceFields
|
|
}
|
|
}
|
|
}
|
|
|
|
query spaceWithNameAndDescription($id: ID!) {
|
|
space(id: $id) {
|
|
name
|
|
description
|
|
}
|
|
} |