Skip to content

Commit

Permalink
fix: casing on invalid hereafter in GraphQL schema
Browse files Browse the repository at this point in the history
Closes #390
  • Loading branch information
rhyslbw committed Dec 11, 2020
1 parent 8b8c39d commit cbdb22a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/api-cardano-db-hasura/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ type Transaction {
where: TransactionInput_bool_exp
): TransactionInput_aggregate!
invalidBefore: String
invalidHereAfter: String
invalidHereafter: String
metadata: [TransactionMetadata]
outputs (
limit: Int
Expand Down Expand Up @@ -659,7 +659,7 @@ input Transaction_order_by {
hash: order_by
includedAt: order_by
invalidBefore: order_by_with_nulls
invalidHereAfter: order_by_with_nulls
invalidHereafter: order_by_with_nulls
size: order_by
totalOutput: order_by
withdrawals: order_by
Expand All @@ -677,7 +677,7 @@ input Transaction_bool_exp {
includedAt: Date_comparison_exp
inputs: TransactionInput_bool_exp
invalidBefore: text_comparison_exp
invalidHereAfter: text_comparison_exp
invalidHereafter: text_comparison_exp
metadata: TransactionMetadata_bool_exp
outputs: TransactionOutput_bool_exp
size: BigInt_comparison_exp
Expand Down Expand Up @@ -709,7 +709,7 @@ type Transaction_max_fields {
deposit: String
fee: String
invalidBefore: String
invalidHereAfter: String
invalidHereafter: String
size: String
totalOutput: String
withdrawals: Withdrawal_max_fields
Expand All @@ -719,7 +719,7 @@ type Transaction_min_fields {
deposit: String
fee: String
invalidBefore: String
invalidHereAfter: String
invalidHereafter: String
size: String
totalOutput: String
withdrawals: Withdrawal_min_fields
Expand Down

0 comments on commit cbdb22a

Please sign in to comment.