OBJECT
Build
link GraphQL Schema definition
1 type Build { 2 3 : ID! 4 5 : String 6 7 : String 8 9 # Date and date build was created 10 : DateTime 11 12 # Date and time build was last modified 13 : DateTime 14 15 : String 16 17 : String 18 19 # The ID of the engine this build is for 20 : ID! 21 22 # The engine this build is for 23 : Engine 24 25 : Int 26 27 : String 28 29 : String 30 31 # Engine build status: 32 : BuildStatus 33 34 # URL to the Docker image for this engine build, if applicable 35 : String 36 37 : JSONData 38 39 : String 40 41 : JSONData 42 43 # The entire manifest, supplied by the engine developer, that describes 44 # the engine's capabilities and requirements and is used by the platform 45 # system to build and execute the engine. 46 : JSONData 47 48 : String 49 50 : [String!] 51 52 : [String!] 53 54 # List of IDs of source types that the engine supports. 55 # Applies only to adapter engines that ingest data from a source. 56 # Will be a list of IDs of SourceType objects. 57 : [String!] 58 59 # Used to give a default action choice 60 : BuildUpdateAction 61 62 # Used to give secondary action choices 63 : [BuildUpdateAction] 64 65 # Contains all valid action choices 66 : [BuildUpdateAction] 67 68 # Data certification 69 : JSONData 70 71 # Release notes for build 72 : String 73 74 }
link Required by
- AutomateRunConfig
- BuildList
- 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.
- TaskRepresents a single engine task