Skip to content

Commit

Permalink
Fix issue #387: minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
LaraMerdol committed Oct 17, 2023
1 parent 06aca0b commit 4ed40ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/visuall/db-service/neo4j-db.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class Neo4jDb implements DbService {
if (f2.length > 0) {
f += f2;
}
this.runQuery(`MATCH (n)-[e]-() ${f} RETURN n,e limit 5`, callback);
this.runQuery(`MATCH (n)-[e]-() ${f} RETURN n,e limit 100`, callback);
}

getFilteringResult(rules: ClassBasedRules, filter: TableFiltering, skip: number, limit: number, type: DbResponseType, callback: (x: GraphResponse | TableResponse) => any) {
Expand Down

0 comments on commit 4ed40ee

Please sign in to comment.