Expose ITAM REST endpoints for agents, console GraphQL for device management, and wire probod bootstrap with enrollment e2e coverage. Signed-off-by: Ludovic Vielle <ludovic@probo.com>
35 lines
884 B
GraphQL
35 lines
884 B
GraphQL
type Viewer {
|
|
id: ID!
|
|
|
|
signableDocuments(
|
|
organizationId: ID!
|
|
first: Int
|
|
after: CursorKey
|
|
last: Int
|
|
before: CursorKey
|
|
orderBy: DocumentOrder
|
|
): EmployeeDocumentConnection! @goField(forceResolver: true)
|
|
|
|
signableDocument(id: ID!): EmployeeDocument @goField(forceResolver: true)
|
|
|
|
approvableDocuments(
|
|
organizationId: ID!
|
|
first: Int
|
|
after: CursorKey
|
|
last: Int
|
|
before: CursorKey
|
|
orderBy: DocumentOrder
|
|
): EmployeeDocumentConnection! @goField(forceResolver: true)
|
|
|
|
approvableDocument(id: ID!): EmployeeDocument @goField(forceResolver: true)
|
|
|
|
enrolledDevices(
|
|
organizationId: ID!
|
|
first: Int
|
|
after: CursorKey
|
|
last: Int
|
|
before: CursorKey
|
|
orderBy: DeviceOrder
|
|
): DeviceConnection! @goField(forceResolver: true)
|
|
}
|