GraphQL Query
query PayTypes {
payTypes {
id
name
description
externalId
modifiedAt
modifiedBy {
fullName
}
}
}
Example Variables
{}
Example Response
{
"data": {
"payTypes": [
{
"id": "793",
"name": "Ordinary - Overtime",
"description": null,
"externalId": null,
"modifiedAt": "2023-11-07T04:30:19.316Z",
"modifiedBy": {
"fullName": "Roubler Support"
}
},
{
"id": "790",
"name": "Ordinary - Standard - Standard",
"description": null,
"externalId": null,
"modifiedAt": "2023-11-07T04:30:19.320Z",
"modifiedBy": {
"fullName": "Roubler Support"
}
},
{
"id": "788",
"name": "Overtime - Standard - Standard",
"description": null,
"externalId": null,
"modifiedAt": "2023-11-07T04:30:19.320Z",
"modifiedBy": {
"fullName": "Roubler Support"
}
}
]
}
}