WithCustomData
Interface for entities with custom JSON data fields
Last updated
Was this helpful?
Interface for entities with custom JSON data fields
Last updated
Was this helpful?
Was this helpful?
query {
inventoryItems(
where: {
Data: ["color", "red"]
DataHasKey: "size"
}
) {
edges {
node {
id
data # Map field from WithCustomData
}
}
}
}