OBJECT

Entity

link GraphQL Schema definition

1type Entity {
2
3id: ID!
4
5name: String
6
7createdDateTime: DateTime
8
9modifiedDateTime: DateTime
10
11createdBy: String
12
13modifiedBy: String
14
15properties: [Property]
16
17libraryId: ID
18
19library: Library
20
21profileImageUrl: String
22
23# Arguments
24# id: Provide an ID to retrieve a specific entity identifier
25identifiers(id: ID, identifierTypeId: ID, offset: Int, limit: Int): EntityIdentifierList
26
27isPublished: Boolean
28
29jsondata: JSONData
30
31jsonstring: String
32
33summary: EntitySummary
34
35description: String
36
37}