INPUT_OBJECT
UpdateSource
Data used to update an existing source
link GraphQL Schema definition
1 input UpdateSource { 4 2 # The ID of the source to update 3 : ID! 7 5 # Update the name field 6 : String 10 8 # Update the isPublic field 9 : Boolean 14 11 # Additional metadata to associate with the source. This data may be 12 # validated against a schema associated with the source type. 13 : JSONData 17 15 # Optional thumbnail image URL for the source 16 : String 20 18 # Optionally, associate content templates with the new source 19 : [CreateSourceContentTemplateWithSource!] 24 21 # Optionally associate a schema for correlation. 22 # Required when correlationSDOId is specified. 23 : ID 29 25 # Optionally associate a structured data object of the specified 26 # correlationSchemaId. 27 # Required when correlationSchemaId is specified. 28 : ID 34 30 # Add or modify collaborators on the source. Permissions for organizations 31 # not mentioned in this list will _not_ be modified. To revoke permissions 32 # for an organization, use the `none` permission. 33 : [CreateSourceCollaborator!] 38 35 # Set current state for the source. This is used only by the adapters 36 # that use the source and should not be set by other clients. 37 : JSONData 42 39 # Storage configuration. This will be used for granting access to storage 40 # read/write URIs for the source 41 : StorageConfigInput 43 }
link Required by
This element is not required by anyone