DepartmentInformation
No description
This requires the current user to be in ADMIN
role.
type DepartmentInformation implements Record {
id: ID!
uuid: String
email: EmailAddress
number: PhoneNumber
departmentOpenTime: Time
departmentCloseTime: Time
website: URL
employees(
skip: Int
): [String!]!
}
Directivesβ
auth
β
This requires the current user to be in ADMIN
role.
Fieldsβ
id
Β βΒ ID!
non-null scalar commonβ
uuid
Β βΒ String
scalar common BETAβ
email
Β βΒ EmailAddress
scalar commonβ
number
Β βΒ PhoneNumber
scalar commonβ
departmentOpenTime
Β βΒ Time
scalar commonβ
departmentCloseTime
Β βΒ Time
scalar commonβ
website
Β βΒ URL
scalar commonβ
employees
Β βΒ [String!]!
non-null scalar commonβ
skip
Β βΒ Int
scalar commonβ
Interfacesβ
Record
interface commonβ
Exampleβ
{
"id": 1,
"uuid": "9c5b94b1-35ad-49bb-b118-8e8fc24abf80",
"email": "john.doe@corp.com",
"number": "1-234-4567",
"departmentOpenTime": "01:02:23.453",
"departmentCloseTime": "01:02:23.453",
"website": "https://tools.ietf.org/html/rfc3986",
"employees": [
"John Doe"
]
}