antelopeql 2.0.0-rc.20 → 2.0.0-rc.22
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.
- package/antelopeql.mjs +1 -1
- package/blockchain/get_producers.mjs +1 -1
- package/package.json +1 -1
package/antelopeql.mjs
CHANGED
|
@@ -66,7 +66,7 @@ export default async function AntelopeQL({
|
|
|
66
66
|
const queries = new GraphQLObjectType({
|
|
67
67
|
name: "Query",
|
|
68
68
|
description: "Query table data from Antelope blockchains.",
|
|
69
|
-
fields: {
|
|
69
|
+
fields: { get_blockchain: blockchain_query_field, ...query_fields }
|
|
70
70
|
});
|
|
71
71
|
|
|
72
72
|
let mutations;
|
|
@@ -56,7 +56,7 @@ const producers = new GraphQLObjectType({
|
|
|
56
56
|
});
|
|
57
57
|
|
|
58
58
|
const get_producers = {
|
|
59
|
-
description: "Return info about
|
|
59
|
+
description: "Return info about block producers.",
|
|
60
60
|
type: new GraphQLObjectType({
|
|
61
61
|
name: "antelope_producers",
|
|
62
62
|
fields: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antelopeql",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.22",
|
|
4
4
|
"description": "A GraphQL implementation for interacting with Antelope based blockchains.",
|
|
5
5
|
"repository": "github:pur3miish/antelopeql",
|
|
6
6
|
"bugs": "https://github.com/pur3miish/antelopeql/issues",
|