Skip to content

Commit

Permalink
unify GraphQL fixture suffix
Browse files Browse the repository at this point in the history
Summary: Some files were using the non-standard `*.ql` suffix. This diff unifies them all to `*.graphql` that we use everywhere else.

Reviewed By: alunyov

Differential Revision: D12854825

fbshipit-source-id: d41e22fcca2be35cfc917672e349a16835ca7153
  • Loading branch information
kassens authored and facebook-github-bot committed Oct 31, 2018
1 parent 23298d8 commit d796497
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ fragment LinkedHandleField on User {
]
`;

exports[`RelayParser matches expected output: linked-handle-field-with-filters.ql 1`] = `
exports[`RelayParser matches expected output: linked-handle-field-with-filters.graphql 1`] = `
~~~~~~~~~~ INPUT ~~~~~~~~~~
fragment LinkedHandleField on User {
friends(first: 10, orderby: $orderby) @__clientField(handle: "clientFriends", filters: ["first", "orderby"]) {
Expand Down Expand Up @@ -866,7 +866,7 @@ fragment LinkedHandleField on User {
]
`;

exports[`RelayParser matches expected output: linked-handle-field-with-key.ql 1`] = `
exports[`RelayParser matches expected output: linked-handle-field-with-key.graphql 1`] = `
~~~~~~~~~~ INPUT ~~~~~~~~~~
fragment LinkedHandleField on User {
friends(first: 10) @__clientField(handle: "clientFriends", key: "LinkedHandleField_friends") {
Expand Down Expand Up @@ -928,7 +928,7 @@ fragment LinkedHandleField on User {
]
`;

exports[`RelayParser matches expected output: linked-handle-filter.ql 1`] = `
exports[`RelayParser matches expected output: linked-handle-filter.graphql 1`] = `
~~~~~~~~~~ INPUT ~~~~~~~~~~
fragment LinkedHandleField on User {
friends(first: 10) @__clientField(handle: "clientFriends", filters: ["first"]) @__clientField(handle: "otherFriends") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fragment LinkedHandleField on User {
`;

exports[`RelayFieldHandleTransform matches expected output: linked-handle-field-filter.ql 1`] = `
exports[`RelayFieldHandleTransform matches expected output: linked-handle-field-filter.graphql 1`] = `
~~~~~~~~~~ INPUT ~~~~~~~~~~
fragment LinkedHandleField on User {
friends(first: 10, orderby: $orderby) @__clientField(handle: "clientFriends", filters: ["first", "orderby"]) {
Expand Down

0 comments on commit d796497

Please sign in to comment.