allow customer to check on self installed field

This commit is contained in:
Chloe
2024-06-27 15:05:59 +07:00
parent 7f4fa09027
commit 6c01d8825d
16 changed files with 288 additions and 96 deletions

View File

@@ -32,3 +32,15 @@ export const getMetaobjectsByIdsQuery = /* GraphQL */ `
}
}
`;
export const getFileQuery = /* GraphQL */ `
query getFile($id: ID!) {
node(id: $id) {
... on GenericFile {
id
url
alt
}
}
}
`;