Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-16-2019 06:09 PM
Hi,
If I paste the param from graph
:param label => null;
:param relationshipType => null;
:param limit => 50;
:param config => {
concurrency: 8,
direction: 'Both',
weightProperty: null,
defaultValue: 1,
writeProperty: 'louvain',
includeIntermediateCommunities: false,
intermediateCommunitiesWriteProperty: 'louvainIntermediate',
communityProperty: ''
};
I am getting below error in browser
Invalid input ':': expected whitespace, comment, Statement or end of input (line 2, column 1 (offset: 13))
":param relationshipType => null;" ^
May I know my mistake please, Thanks?
Solved! Go to Solution.
09-16-2019 06:17 PM
You can run each of those separately, or you could use :params
to set them all at once, but you'll need all of them in the parameter map:
:params {label:null, relationshipType:null, limit:50, config: {concurrency: 8, direction: 'Both',weightProperty: null,defaultValue: 1,writeProperty: 'louvain',includeIntermediateCommunities: false,intermediateCommunitiesWriteProperty: 'louvainIntermediate',communityProperty: ''}}
09-16-2019 06:17 PM
You can run each of those separately, or you could use :params
to set them all at once, but you'll need all of them in the parameter map:
:params {label:null, relationshipType:null, limit:50, config: {concurrency: 8, direction: 'Both',weightProperty: null,defaultValue: 1,writeProperty: 'louvain',includeIntermediateCommunities: false,intermediateCommunitiesWriteProperty: 'louvainIntermediate',communityProperty: ''}}
All the sessions of the conference are now available online