@infrab4a/connect 4.3.6-beta.7 → 4.3.7
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/index.cjs.js
CHANGED
|
@@ -4739,7 +4739,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
4739
4739
|
}
|
|
4740
4740
|
}
|
|
4741
4741
|
async getChildren(parentId) {
|
|
4742
|
-
const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'
|
|
4742
|
+
const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'], {
|
|
4743
4743
|
args: {
|
|
4744
4744
|
type: 'category_tree_args',
|
|
4745
4745
|
value: { parentid: parentId },
|
package/index.esm.js
CHANGED
|
@@ -4715,7 +4715,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
4715
4715
|
}
|
|
4716
4716
|
}
|
|
4717
4717
|
async getChildren(parentId) {
|
|
4718
|
-
const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'
|
|
4718
|
+
const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'], {
|
|
4719
4719
|
args: {
|
|
4720
4720
|
type: 'category_tree_args',
|
|
4721
4721
|
value: { parentid: parentId },
|
package/package.json
CHANGED