Skip to content

Commit

Permalink
fix(import-export-sdk): using correct queries on core next api
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Jul 15, 2024
1 parent 0b5eabb commit 8bf3004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/import-export-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crystallize/import-export-sdk",
"version": "1.0.2",
"version": "1.0.3",
"license": "MIT",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion components/import-export-sdk/src/shape/queries/getMany.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface GetManyConfig {

const query = (config?: GetManyConfig) => `
query GET_MANY_SHAPES {
shapes(first: 100, after: "${config?.after}") {
shapes(first: 100, after: "${config?.after ?? ''}") {
edges {
node {
identifier
Expand Down

0 comments on commit 8bf3004

Please sign in to comment.