Skip to content
Snippets Groups Projects
Commit f01d07e0 authored by Samed's avatar Samed
Browse files

fix: type issues in storyblocks addPill2Graphology

parent ce7773d7
No related branches found
No related tags found
No related merge requests found
Pipeline #138907 passed
......@@ -67,6 +67,7 @@ export const Simple = {
x: 100,
y: 100,
name: 'Airport 1',
attributes: [],
},
schema.getNodeAttribute('entity', 'attributes'),
);
......@@ -77,6 +78,7 @@ export const Simple = {
x: 200,
y: 200,
name: 'Airport 2',
attributes: [],
},
schema.getNodeAttribute('entity', 'attributes'),
);
......@@ -91,6 +93,7 @@ export const Simple = {
name: 'Flight between airports',
collection: 'Relation Pill',
depth: { min: 0, max: 1 },
attributes: [],
},
schema.getEdgeAttribute('entity:entity_entityentity', 'attributes'),
);
......
......@@ -35,6 +35,7 @@ export const SingleEntity = {
x: 100,
y: 100,
name: 'Entity Pill',
attributes: [],
});
store.dispatch(setQuerybuilderGraph(graph.export()));
},
......
......@@ -37,6 +37,7 @@ export const SingleRelationship = {
name: 'Relation Pill',
collection: 'Relation Pill',
depth: { min: 0, max: 1 },
attributes: [],
});
store.dispatch(setQuerybuilderGraph(graph.export()));
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment