2025-02-13 19:04:29 +03:00

23 lines
283 B
GraphQL

fragment OrderFields on Order {
documentId
time_start
time_end
state
order_number
services {
documentId
name
}
client {
name
documentId
photoUrl
}
}
query GetOrder($documentId: ID!) {
order(documentId: $documentId) {
...OrderFields
}
}