mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
polish order confirmation in orders list and order details pages
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
export const getMetaobjectsQuery = /* GraphQL */ `
|
||||
query getMetaobjects($type: String!) {
|
||||
metaobjects(type: $type, first: 200) {
|
||||
query getMetaobjects($type: String!, $after: String) {
|
||||
metaobjects(type: $type, first: 200, after: $after) {
|
||||
edges {
|
||||
node {
|
||||
id
|
||||
@@ -16,6 +16,10 @@ export const getMetaobjectsQuery = /* GraphQL */ `
|
||||
}
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
endCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
Reference in New Issue
Block a user