feat: implement YMM filters

Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
This commit is contained in:
Chloe
2024-05-15 20:53:22 +07:00
parent 57c5f42bf3
commit 7c60e4e7f4
12 changed files with 392 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
export const getMetaobjectsQuery = /* GraphQL */ `
query getMetaobjects($type: String!) {
metaobjects(type: $type, first: 200) {
edges {
node {
id
fields {
reference {
... on Metaobject {
id
}
}
key
value
}
}
}
}
}
`;