2017-04-14 100 views
0

在我的Neo4j/SDN项目,我有以下模式:包含子DecisionCharacteristic实体Neo4j的暗号查询排序

Decision实体。

每对儿童DecisionCharacteristic可以分配一个Value节点。

我已经在3子Decision节点,例如

childDecision1 
childDecision2 
childDecision3 

和一个Characteristic

characterisitc1

我已分配下列值以下对:

childDecision2 + characterisitc1 = Value(Integer 10) 
childDecision3 + characterisitc1 = Value(Integer 25) 

我正在执行下面的Cypher查询(带O RDER BY sortValue88.value ASC):

MATCH (parentD)-[:CONTAINS]->(childD:Decision)-[ru:CREATED_BY]->(u:User) 
WHERE id(parentD) = {decisionId} 
OPTIONAL MATCH (childD)<-[:SET_FOR]->(sortValue88:Value)-[:SET_ON]->(sortCharacteristic88:Characteristic) 
WHERE id(sortCharacteristic88) = 88 
WITH ru, u, childD , sortValue88 
ORDER BY sortValue88.value ASC SKIP 0 LIMIT 100 
RETURN ru, u, childD AS decision, [ (parentD)<-[:DEFINED_BY]-(entity)<-[:COMMENTED_ON]-(comg:CommentGroup)-[:COMMENTED_FOR]->(childD) | {entityId: id(entity), types: labels(entity), totalComments: toInt(comg.totalComments)} ] AS commentGroups, [ (parentD)<-[:DEFINED_BY]-(c1:Criterion)<-[:VOTED_ON]-(vg1:VoteGroup)-[:VOTED_FOR]->(childD) | {criterionId: id(c1), weight: vg1.avgVotesWeight, totalVotes: toInt(vg1.totalVotes)} ] AS weightedCriteria, [ (parentD)<-[:DEFINED_BY]-(ch1:Characteristic)<-[:SET_ON]-(v1:Value)-[:SET_FOR]->(childD) | {characteristicId: id(ch1), value: v1.value, valueType: ch1.valueType, visualMode: ch1.visualMode} ] AS valuedCharacteristics 

至于结果,我有:

childDecision2 (Value = 10) 
childDecision3 (Value = 25) 
childDecision1 (no value provided) 

到目前为止,一切工作正常。

现在我要去的排序顺序改变方向从ASCDESC

MATCH (parentD)-[:CONTAINS]->(childD:Decision)-[ru:CREATED_BY]->(u:User) 
WHERE id(parentD) = {decisionId} 
OPTIONAL MATCH (childD)<-[:SET_FOR]->(sortValue88:Value)-[:SET_ON]->(sortCharacteristic88:Characteristic) 
WHERE id(sortCharacteristic88) = 88 
WITH ru, u, childD , sortValue88 
ORDER BY sortValue88.value DESC SKIP 0 LIMIT 100 
RETURN ru, u, childD AS decision, [ (parentD)<-[:DEFINED_BY]-(entity)<-[:COMMENTED_ON]-(comg:CommentGroup)-[:COMMENTED_FOR]->(childD) | {entityId: id(entity), types: labels(entity), totalComments: toInt(comg.totalComments)} ] AS commentGroups, [ (parentD)<-[:DEFINED_BY]-(c1:Criterion)<-[:VOTED_ON]-(vg1:VoteGroup)-[:VOTED_FOR]->(childD) | {criterionId: id(c1), weight: vg1.avgVotesWeight, totalVotes: toInt(vg1.totalVotes)} ] AS weightedCriteria, [ (parentD)<-[:DEFINED_BY]-(ch1:Characteristic)<-[:SET_ON]-(v1:Value)-[:SET_FOR]->(childD) | {characteristicId: id(ch1), value: v1.value, valueType: ch1.valueType, visualMode: ch1.visualMode} ] AS valuedCharacteristics 

至于结果,我有:

childDecision1 (no value provided) 
childDecision3 (Value = 25) 
childDecision2 (Value = 10) 

现在我不明白为什么childDecision1占据第一位,但我希望childDecision3代替它。

请你帮忙解释/解决这个问题吗?

回答

1

因为:When sorting the result set, null will always come at the end of the result set for ascending sorting, and first when doing descending sort.

所以,你需要知道排序的最小可能值。例如,如果所有数值都不小于零,则表示所有数值不小于零。

WITH [1, 0, 2, NULL, 4] AS CS 
UNWIND RANGE(0, size(CS)-1) as i 
RETURN i, 
     CASE WHEN CS[i] IS NULL THEN -1 ELSE CS[i] END AS sortValue 
ORDER BY sortValue DESC 
+0

感谢您的回答。有没有机会重新配置Neo4j以便在进行降序排序时最后返回NULL?我有一个非常沉重的查询和额外的条件在我看来是不是一个不错的选择 – alexanoid

+0

您可以更改'CypherOrderability.compare'函数代码[https://github.com/neo4j/neo4j/blob/862d62b2f2dc2221e48476ac1f6c93c91d7d6015/community/cypher /cypher-compiler-3.2/src/main/java/org/neo4j/cypher/internal/compiler/v3_2/common/CypherOrderability.java#L105]或是请求新功能的好理由。 –

+0

谢谢!创建了一个github问题https://github.com/neo4j/neo4j/issues/9213 – alexanoid