Skip to content

Commit ba81395

Browse files
lopertclaude
andcommitted
Remove redundant metafield alias from local-pickup queries
The queries had `metafield: metafield(...)` which creates a redundant alias. This caused issues with the test helper library's query-to-fixture matching. Removed the alias to use just `metafield(...)`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6fd0393 commit ba81395

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

functions-local-pickup-delivery-option-generators-js/src/run.graphql.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ query RunInput {
2222
}
2323
}
2424
deliveryOptionGenerator {
25-
metafield: metafield(namespace: "$app:local-pickup-options-generator", key: "pickup-ids") {
25+
metafield(namespace: "$app:local-pickup-options-generator", key: "pickup-ids") {
2626
value
2727
}
2828
}

functions-local-pickup-delivery-option-generators-rs/src/run.graphql.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ query Input {
2222
}
2323
}
2424
deliveryOptionGenerator {
25-
metafield: metafield(namespace: "$app:local-pickup-options-generator", key: "pickup-ids") {
25+
metafield(namespace: "$app:local-pickup-options-generator", key: "pickup-ids") {
2626
value
2727
}
2828
}

0 commit comments

Comments
 (0)