Toggle navigation
Home
org.neo4j.kernel.builtinprocs.SchemaInfoResult to org.neo4j.kernel.builtinprocs.NodePropertySchemaInfoResult
No. of Instances - 5
No. of Commits - 2
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
SchemaInfoResult
to
NodePropertySchemaInfoResult
SchemaInfoResult
to
NodePropertySchemaInfoResult
Add or Remove Method invocation
results.add(new NodePropertySchemaInfoResult(NODE,labelNames,propName,valueTypeListHelper.getCypherTypesList(),true))
to
results.add(new NodePropertySchemaInfoResult(labels,propName,valueTypeListHelper.getCypherTypesList(),false))
results.add(new NodePropertySchemaInfoResult(NODE,labelNames,propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isNullable()))
to
results.add(new NodePropertySchemaInfoResult(labels,propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isMandatory()))
labelSetANDNodePropertyKeyIdToValueTypeMapping.get(Pair.of(labelSet,propId))
to
nodeMappings.labelSetANDNodePropertyKeyIdToValueType.get(Pair.of(labelSet,propId))
nullableLabelSets.contains(labelSet)
to
nodeMappings.nullableLabelSets.contains(labelSet)
Collections.singletonList(name)
to
labelNames
results.add(new NodePropertySchemaInfoResult(RELATIONSHIP,labelNames,propName,valueTypeListHelper.getCypherTypesList(),true))
to
results.add(new NodePropertySchemaInfoResult(labels,labelNames,propName,valueTypeListHelper.getCypherTypesList(),false))
labelNames
to
labelNames
results.add(new NodePropertySchemaInfoResult(RELATIONSHIP,labelNames,propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isNullable()))
to
results.add(new NodePropertySchemaInfoResult(labels,labelNames,propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isMandatory()))
relationshipTypeIdANDPropertyTypeIdToValueTypeMapping.get(Pair.of(typeId,propId))
to
nodeMappings.labelSetANDNodePropertyKeyIdToValueType.get(Pair.of(labelSet,propId))
nullableRelationshipTypes.contains(typeId)
to
nodeMappings.nullableLabelSets.contains(labelSet)