Appearance
Support
Interne GraphQL-queries: Support. Vereist authenticatie.
Endpoint: POST https://graphql.persmonitor.nl/graphql
Intern · VPN
Deze pagina's zijn op productie alleen via VPN bereikbaar onder /internal/.
mySupportTickets
All support tickets for an organization. Requires auth, membership, and a paid subscription.
Return type: [SupportTicket]!
Authenticatie: Organisatielid
Argumenten:
| Argument | Type | Verplicht | Beschrijving |
|---|---|---|---|
organization | OrganizationRef! | Ja | Organisatie-selectie, bijv. { uuid }. |
Voorbeeld:
graphql
query MySupportTickets {
mySupportTickets(organization: $organization) {
# selecteer velden uit het return type
}
}supportTicket
Single support ticket with all messages. Requires auth; user must be member of the ticket's organization.
Return type: SupportTicket
Authenticatie: Organisatielid
Argumenten:
| Argument | Type | Verplicht | Beschrijving |
|---|---|---|---|
ticket | SupportTicketRef! | Ja | Ticket-selectie, bijv. { uuid }. |
Voorbeeld:
graphql
query SupportTicket {
supportTicket(ticket: $ticket) {
# selecteer velden uit het return type
}
}