OBJECT

SavedSearch

link GraphQL Schema definition

1type SavedSearch {
2
3id: ID!
4
5organizationId: ID!
6
7organization: Organization
8
9ownerId: ID!
10
11owner: User
12
13name: String!
14
15sharedWithOrganization: Boolean
16
17createdDateTime: DateTime!
18
19modifiedDateTime: DateTime!
20
21csp: JSONData
22
23}