GetPsoTypes - Common queries

PSO on the web interface

The Trigram is used as identifier in the API Queries.

Most PSO are custom for each customer.

The system PSO are “USR” (which host the employee data) and “MDL” (which host the connected modules information

Get the number of PSO in the instance.

the “first” parameter is required: set to 1 as default value.?

Query

query GetPsoTypes {
    getPsoTypes(first: 1) {
        totalCount
    }
}

Response

{
    "data": {
        "getPsoTypes": {
            "totalCount": 10
        }
    },
    "errors": null
}

The Key “totalCount” returns the number of PSO of a customer instance.

Get ALL PSO information

set “first” parameter to the value return in “totalCount” from previous request

Query

Response

Get Filtered PSO

Queries

Get Active PSO

Get PSO with known Alias: usr

Response

Last updated