Skip to content

Commit

Permalink
switch to new envio endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanlesich committed Aug 30, 2024
1 parent a29c560 commit 739307b
Show file tree
Hide file tree
Showing 6 changed files with 1,026 additions and 676 deletions.
4 changes: 2 additions & 2 deletions .graphclientrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ sources:
- name: grant-ships
handler:
graphql:
# endpoint: https://indexer.bigdevenergy.link/3a96753/v1/graphql
endpoint: http://localhost:8080/v1/graphql
endpoint: https://indexer.bigdevenergy.link/3a96753/v1/graphql
# endpoint: http://localhost:8080/v1/graphql
documents:
# - './src/**/*.graphql'
- './src/graphql/newQueries/**/*.graphql'
146 changes: 71 additions & 75 deletions src/.graphclient/index.ts

Large diffs are not rendered by default.

118 changes: 63 additions & 55 deletions src/.graphclient/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ columns and relationships of "FactoryEventsSummary"
"""
type FactoryEventsSummary {
address: String!
admins: _text!
admins: [String!]!
contestBuiltCount: numeric!
contestCloneCount: numeric!
contestTemplateCount: numeric!
Expand All @@ -1492,7 +1492,7 @@ input FactoryEventsSummary_bool_exp {
_not: FactoryEventsSummary_bool_exp
_or: [FactoryEventsSummary_bool_exp!]
address: String_comparison_exp
admins: _text_comparison_exp
admins: String_array_comparison_exp
contestBuiltCount: numeric_comparison_exp
contestCloneCount: numeric_comparison_exp
contestTemplateCount: numeric_comparison_exp
Expand Down Expand Up @@ -1552,7 +1552,7 @@ input FactoryEventsSummary_stream_cursor_input {
"""Initial value of the column from where the streaming should start"""
input FactoryEventsSummary_stream_cursor_value_input {
address: String
admins: _text
admins: [String!]
contestBuiltCount: numeric
contestCloneCount: numeric
contestTemplateCount: numeric
Expand Down Expand Up @@ -2769,8 +2769,8 @@ type GrantShip {
name: String!
nonce: numeric!
owner: String!
pastNames: _text!
pastProfileIds: _text!
pastNames: [String!]!
pastProfileIds: [String!]!
poolActive: Boolean
poolFunded: Boolean!
poolId: numeric
Expand Down Expand Up @@ -2866,8 +2866,8 @@ input GrantShip_bool_exp {
name: String_comparison_exp
nonce: numeric_comparison_exp
owner: String_comparison_exp
pastNames: _text_comparison_exp
pastProfileIds: _text_comparison_exp
pastNames: String_array_comparison_exp
pastProfileIds: String_array_comparison_exp
poolActive: Boolean_comparison_exp
poolFunded: Boolean_comparison_exp
poolId: numeric_comparison_exp
Expand Down Expand Up @@ -2908,6 +2908,8 @@ input GrantShip_max_order_by {
name: order_by
nonce: order_by
owner: order_by
pastNames: order_by
pastProfileIds: order_by
poolId: order_by
profileId: order_by
profileMetadata_id: order_by
Expand Down Expand Up @@ -2944,6 +2946,8 @@ input GrantShip_min_order_by {
name: order_by
nonce: order_by
owner: order_by
pastNames: order_by
pastProfileIds: order_by
poolId: order_by
profileId: order_by
profileMetadata_id: order_by
Expand Down Expand Up @@ -3199,8 +3203,8 @@ input GrantShip_stream_cursor_value_input {
name: String
nonce: numeric
owner: String
pastNames: _text
pastProfileIds: _text
pastNames: [String!]
pastProfileIds: [String!]
poolActive: Boolean
poolFunded: Boolean
poolId: numeric
Expand Down Expand Up @@ -3813,7 +3817,7 @@ type HatsPoster {
"""filter the rows returned"""
where: EventPost_bool_exp
): [EventPost!]!
hatIds: _numeric!
hatIds: [numeric!]!
hatsAddress: String!
id: String!
"""An array relationship"""
Expand All @@ -3840,7 +3844,7 @@ input HatsPoster_bool_exp {
_or: [HatsPoster_bool_exp!]
db_write_timestamp: timestamp_comparison_exp
eventPosts: EventPost_bool_exp
hatIds: _numeric_comparison_exp
hatIds: numeric_array_comparison_exp
hatsAddress: String_comparison_exp
id: String_comparison_exp
record: Record_bool_exp
Expand Down Expand Up @@ -3883,7 +3887,7 @@ input HatsPoster_stream_cursor_input {
"""Initial value of the column from where the streaming should start"""
input HatsPoster_stream_cursor_value_input {
db_write_timestamp: timestamp
hatIds: _numeric
hatIds: [numeric!]
hatsAddress: String
id: String
}
Expand Down Expand Up @@ -4595,7 +4599,7 @@ input ProfileIdToAnchor_stream_cursor_value_input {
columns and relationships of "ProfileMemberGroup"
"""
type ProfileMemberGroup {
addresses: _text!
addresses: [String!]!
db_write_timestamp: timestamp
id: String!
role: String!
Expand All @@ -4608,7 +4612,7 @@ input ProfileMemberGroup_bool_exp {
_and: [ProfileMemberGroup_bool_exp!]
_not: ProfileMemberGroup_bool_exp
_or: [ProfileMemberGroup_bool_exp!]
addresses: _text_comparison_exp
addresses: String_array_comparison_exp
db_write_timestamp: timestamp_comparison_exp
id: String_comparison_exp
role: String_comparison_exp
Expand Down Expand Up @@ -4648,7 +4652,7 @@ input ProfileMemberGroup_stream_cursor_input {

"""Initial value of the column from where the streaming should start"""
input ProfileMemberGroup_stream_cursor_value_input {
addresses: _text
addresses: [String!]
db_write_timestamp: timestamp
id: String
role: String
Expand Down Expand Up @@ -4685,8 +4689,8 @@ type Project {
name: String!
nonce: numeric!
owner: String!
pastNames: _text!
pastProfileIds: _text!
pastNames: [String!]!
pastProfileIds: [String!]!
profileId: String!
status: Int!
totalAmountReceived: numeric!
Expand All @@ -4712,8 +4716,8 @@ input Project_bool_exp {
name: String_comparison_exp
nonce: numeric_comparison_exp
owner: String_comparison_exp
pastNames: _text_comparison_exp
pastProfileIds: _text_comparison_exp
pastNames: String_array_comparison_exp
pastProfileIds: String_array_comparison_exp
profileId: String_comparison_exp
status: Int_comparison_exp
totalAmountReceived: numeric_comparison_exp
Expand Down Expand Up @@ -4799,8 +4803,8 @@ input Project_stream_cursor_value_input {
name: String
nonce: numeric
owner: String
pastNames: _text
pastProfileIds: _text
pastNames: [String!]
pastProfileIds: [String!]
profileId: String
status: Int
totalAmountReceived: numeric
Expand Down Expand Up @@ -5853,6 +5857,25 @@ input StemModule_stream_cursor_value_input {
moduleTemplate_id: String
}

"""
Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
"""
input String_array_comparison_exp {
"""is the array contained in the given array value"""
_contained_in: [String!]
"""does the array contain the given value"""
_contains: [String!]
_eq: [String!]
_gt: [String!]
_gte: [String!]
_in: [[String!]!]
_is_null: Boolean
_lt: [String!]
_lte: [String!]
_neq: [String!]
_nin: [[String!]!]
}

"""
Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
"""
Expand Down Expand Up @@ -6181,40 +6204,6 @@ input Update_stream_cursor_value_input {
timestamp: Int
}

scalar _numeric

"""
Boolean expression to compare columns of type "_numeric". All fields are combined with logical 'AND'.
"""
input _numeric_comparison_exp {
_eq: _numeric
_gt: _numeric
_gte: _numeric
_in: [_numeric!]
_is_null: Boolean
_lt: _numeric
_lte: _numeric
_neq: _numeric
_nin: [_numeric!]
}

scalar _text

"""
Boolean expression to compare columns of type "_text". All fields are combined with logical 'AND'.
"""
input _text_comparison_exp {
_eq: _text
_gt: _text
_gte: _text
_in: [_text!]
_is_null: Boolean
_lt: _text
_lte: _text
_neq: _text
_nin: [_text!]
}

"""
columns and relationships of "chain_metadata"
"""
Expand Down Expand Up @@ -6929,6 +6918,25 @@ input json_comparison_exp {

scalar numeric

"""
Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.
"""
input numeric_array_comparison_exp {
"""is the array contained in the given array value"""
_contained_in: [numeric!]
"""does the array contain the given value"""
_contains: [numeric!]
_eq: [numeric!]
_gt: [numeric!]
_gte: [numeric!]
_in: [[numeric!]!]
_is_null: Boolean
_lt: [numeric!]
_lte: [numeric!]
_neq: [numeric!]
_nin: [[numeric!]!]
}

"""
Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.
"""
Expand Down
Loading

0 comments on commit 739307b

Please sign in to comment.