@berachain/graphql 0.4.10-beta.0 → 0.4.10-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
totalVolume
|
|
28
28
|
}
|
|
29
29
|
`,F=o.gql`
|
|
30
|
-
query GetHoneyTxn($page: Int!, $limit: Int!, $
|
|
30
|
+
query GetHoneyTxn($page: Int!, $limit: Int!, $where: HoneyTxn_filter) {
|
|
31
31
|
honeyTxns(
|
|
32
32
|
skip: $page
|
|
33
33
|
first: $limit
|
|
34
34
|
orderBy: timestamp
|
|
35
35
|
orderDirection: desc
|
|
36
|
-
where:
|
|
36
|
+
where: $where
|
|
37
37
|
) {
|
|
38
38
|
...HoneyTxnData
|
|
39
39
|
}
|
|
@@ -671,7 +671,7 @@ type HoneyTxnDataFragment = {
|
|
|
671
671
|
type GetHoneyTxnQueryVariables = Exact<{
|
|
672
672
|
page: Scalars['Int']['input'];
|
|
673
673
|
limit: Scalars['Int']['input'];
|
|
674
|
-
|
|
674
|
+
where?: InputMaybe<HoneyTxn_Filter>;
|
|
675
675
|
}>;
|
|
676
676
|
type GetHoneyTxnQuery = {
|
|
677
677
|
__typename?: 'Query';
|
|
@@ -671,7 +671,7 @@ type HoneyTxnDataFragment = {
|
|
|
671
671
|
type GetHoneyTxnQueryVariables = Exact<{
|
|
672
672
|
page: Scalars['Int']['input'];
|
|
673
673
|
limit: Scalars['Int']['input'];
|
|
674
|
-
|
|
674
|
+
where?: InputMaybe<HoneyTxn_Filter>;
|
|
675
675
|
}>;
|
|
676
676
|
type GetHoneyTxnQuery = {
|
|
677
677
|
__typename?: 'Query';
|
|
@@ -27,13 +27,13 @@ import{gql as r}from"@apollo/client";var y=(a=>(a.Day="day",a.Hour="hour",a))(y|
|
|
|
27
27
|
totalVolume
|
|
28
28
|
}
|
|
29
29
|
`,x=r`
|
|
30
|
-
query GetHoneyTxn($page: Int!, $limit: Int!, $
|
|
30
|
+
query GetHoneyTxn($page: Int!, $limit: Int!, $where: HoneyTxn_filter) {
|
|
31
31
|
honeyTxns(
|
|
32
32
|
skip: $page
|
|
33
33
|
first: $limit
|
|
34
34
|
orderBy: timestamp
|
|
35
35
|
orderDirection: desc
|
|
36
|
-
where:
|
|
36
|
+
where: $where
|
|
37
37
|
) {
|
|
38
38
|
...HoneyTxnData
|
|
39
39
|
}
|