OBJECT
Library
link GraphQL Schema definition
1 type Library { 2 3 # Object creation timestamp. Does not change. 4 DateTime : 5 6 # Object modification timestamp. 7 DateTime : 8 9 # The object's unique ID 10 ID! : 11 12 String : 13 14 String : 15 16 String : 17 18 String : 19 20 # Modular metadata in the form of key-value pairs 21 Property] : [ 22 23 # Security settings for the asset container 24 Security : 25 26 ID! : 27 28 # Library version 29 Int : 30 31 ID : 32 33 LibraryType : 34 35 ID : 36 37 String : 38 39 # Retrieve engine models for a library 40 # 41 # Arguments 42 # id: Provide an ID to retrieve a specific engine model 43 # libraryVersion: Provide a library version to retrieve engine 44 # models associated with 45 # a given version. 46 # currentVersion: Set to true to retrieve engine models 47 # associated with the current 48 # library version. 49 # trainStatus: Provide a training status to filter for engine 50 # models by status. 51 # engineId: Provide an engineId to filter for engine models by 52 # engine. 53 # lastModified: Set to true to retrieve the most recently 54 # modified engine model. 55 # offset: Provide an offset to skip to a certain element in the 56 # result, for paging. 57 # limit: Specify maximum number of results to retrieve in this 58 # result. Page size. 59 ( 60 ID, : 61 Int, : 62 Boolean, : 63 LibraryEngineModelTrainStatus, : 64 ID, : 65 Boolean, : 66 Int, : 67 Int : 68 ): LibraryEngineModelList 69 70 # Retrieve library model configurations 71 Int, : Int): LibraryConfigurationList ( : 72 73 # Retrieve dataset library tdos 74 LibraryDataset : 75 76 # Arguments 77 # id: Provide an ID to retrieve a single specific entity. 78 ( 79 ID, : 80 ID!], : [ 81 Boolean, : 82 ID, : 83 String, : 84 Int, : 85 Int, : 86 LibraryEntityOrderBy, : 87 OrderDirection : 88 ): EntityList 89 90 # Retrieve collaborators for a library. 91 # 92 # Arguments 93 # collaboratorOrgId: Provide an ID to retrieve collaborators 94 # within a specific organization. 95 ID): LibraryCollaboratorList ( : 96 97 # Aggregated summary data about the library 98 LibrarySummary : 99 100 }
link Required by
- EngineResultRepresents single chunk of engine results for date range
- Entity
- LibraryCollaborator
- LibraryEngineModel
- LibraryList
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.