Skip to content

Commit

Permalink
some edits
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Oct 12, 2023
1 parent 8d5b13e commit 0bc98d6
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 7 deletions.
12 changes: 12 additions & 0 deletions help.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/zsh

# Find all __MISMATCH__ folders
find . -type d -name "__MISMATCH__" | while read mismatch_dir; do
# Get the parent __snapshots__ directory
snapshot_dir="$(dirname "$mismatch_dir")"

# Copy all files from __MISMATCH__ to __snapshots__
cp "$mismatch_dir"/* "$snapshot_dir/"
done

echo "Done!"
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ input StringOperationFilterInput {
nstartsWith: String
endsWith: String
nendsWith: String
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ input StringOperationFilterInput {
nstartsWith: String
endsWith: String
nendsWith: String
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ input StringOperationFilterInput {
nstartsWith: String
endsWith: String
nendsWith: String
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ input StringOperationFilterInput {
nstartsWith: String
endsWith: String
nendsWith: String
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ input FooFilterInput {

input TestOperationFilterInput {
eq: String
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ input ShortOperationFilterInput {
nlte: Short
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION

"The `Short` scalar type represents non-fractional signed whole 16-bit numeric values. Short can represent values between -(2^15) and 2^15 - 1."
scalar Short
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ input ShortOperationFilterInput {
nlte: Short
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION

"The `Short` scalar type represents non-fractional signed whole 16-bit numeric values. Short can represent values between -(2^15) and 2^15 - 1."
scalar Short
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ input FooSortInput {
enum SortEnumType {
ASC
DESC
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ input FooSortInput {
enum SortEnumType {
ASC
DESC
}
}

directive @tag(name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION

0 comments on commit 0bc98d6

Please sign in to comment.