getPsoFields
Last updated
Last updated
query GetPsoFields {
getPsoFields(alias: "usr", first: 2, after: null) {
totalCount
pageInfo {
startCursor
endCursor
hasNextPage
hasPreviousPage
}
edges {
cursor
node {
isActive
alias
createdAt
}
}
}
}{
"data": {
"getPsoFields": {
"totalCount": 88,
"pageInfo": {
"startCursor": "MTU=",
"endCursor": "MTc=",
"hasNextPage": true,
"hasPreviousPage": false
},
"edges": [
{
"cursor": "MTU=",
"node": {
"isActive": true,
"alias": "professional_phone",
"createdAt": "2018-03-22T08:59:33Z"
}
},
{
"cursor": "MTc=",
"node": {
"isActive": true,
"alias": "professional_mobile_phone",
"createdAt": "2018-03-22T08:59:33Z"
}
}
]
}
},
"errors": null
}