You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using @apollo/persisted-query-lists with apollo codegen
import type { PersistedQueryManifestConfig } from '@apollo/generate-persisted-query-manifest';
import { fromGraphQLCodegenPersistedDocuments } from '@apollo/generate-persisted-query-manifest';
const config: PersistedQueryManifestConfig = {
documents: fromGraphQLCodegenPersistedDocuments('./src/gql/persisted-documents.json'),
};
export default config;
however when I use the verification link i get operation mismatch errors on every query. i printed the queries that are being compared by the persisted-query-lists package and it looks like they dont match because the order of fields is different. is there something I can do to fix this issue or is there a bug?
query query GetSupRelationships {
loggedInShopifyShop {
id
relationshipsAsSup(tableFilterInput: {}) {
edges {
node {
id
hasSupSeenInstantAddUpsellModal
hasApprovedProposal
sk {
id
name
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
}
manifestoperation query GetSupRelationships {
loggedInShopifyShop {
id
relationshipsAsSup(tableFilterInput: {}) {
edges {
node {
hasApprovedProposal
hasSupSeenInstantAddUpsellModal
id
sk {
id
name
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
}
The text was updated successfully, but these errors were encountered:
I am using @apollo/persisted-query-lists with apollo codegen
however when I use the verification link i get operation mismatch errors on every query. i printed the queries that are being compared by the persisted-query-lists package and it looks like they dont match because the order of fields is different. is there something I can do to fix this issue or is there a bug?
The text was updated successfully, but these errors were encountered: