portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
25 lines (23 loc) • 416 B
text/typescript
import gql from 'graphql-tag';
export const SERVICES = gql`
query CustomerServices($input: CustomerServicesInput!) {
customerServices(input: $input) {
services {
id
name
nickname
type
status
allocatedFrom
allocatedTo
user {
id
nationalId
name
nickname
email
}
}
}
}
`;