File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/shared/modules/dbMeta Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,15 +206,15 @@ export const updateSettings = (settings) => {
206206// Epics
207207export const metaQuery = `
208208CALL db.labels() YIELD label
209- WITH COLLECT(label) AS labels
209+ WITH COLLECT(label)[..1000] AS labels
210210RETURN 'labels' as a, labels as result
211211UNION
212212CALL db.relationshipTypes() YIELD relationshipType
213- WITH COLLECT(relationshipType) AS relationshipTypes
213+ WITH COLLECT(relationshipType)[..1000] AS relationshipTypes
214214RETURN 'relationshipTypes' as a, relationshipTypes as result
215215UNION
216216CALL db.propertyKeys() YIELD propertyKey
217- WITH COLLECT(propertyKey) AS propertyKeys
217+ WITH COLLECT(propertyKey)[..1000] AS propertyKeys
218218RETURN 'propertyKeys' as a, propertyKeys as result
219219UNION
220220CALL dbms.functions() YIELD name, signature, description
You can’t perform that action at this time.
0 commit comments