MetafieldInput
Input for a namespaced metafield stored on a resource.
Input Definition
input MetafieldInput {
namespace: String!
key: String!
type: String!
value: String!
}Fields
Example
mutation {
updateResource(input: {
metafield: {
namespace: "custom_app"
key: "product_info"
type: "json"
value: "{\"color\": \"blue\", \"size\": \"large\"}"
}
}) {
resource {
id
}
}
}Related Types
No related types specified.