17 lines
271 B
GraphQL
17 lines
271 B
GraphQL
fragment ServiceFields on Service {
|
|
documentId
|
|
name
|
|
}
|
|
|
|
query GetServices($filters: ServiceFiltersInput) {
|
|
services(filters: $filters) {
|
|
...ServiceFields
|
|
}
|
|
}
|
|
|
|
query GetService($documentId: ID!) {
|
|
service(documentId: $documentId) {
|
|
...ServiceFields
|
|
}
|
|
}
|