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 } }