property
A named value stored on a node or a relationship.
Also written: properties
Example
name is stored on the (:Person) node, title and released are stored on the (:Movie) node. role is stored on the relationship.
cypher
MATCH path = (:Person {name: 'Tom Hanks'})-[r:ACTED_IN]->(m:Movie)
RETURN path, m.released, r.rolem.released reads a named value from the (:Movie) node. r.role reads one from the relationship. role sits there rather than on either node, because Tom Hanks is Woody in this film and not in the others he acted in.
Lessons that use this term
The lesson and course links below open in a new tab.
335 lessons use this term. The 40 with the highest term density are listed here.
Intermediate Cypher Queries77 mentions
- Querying for Null ValuesFiltering Queriesall Movie nodes in the graph that do not have a tmdbId property1 mention
- Testing List InclusionFiltering Queriesstoring a single value or an array of values of the same type within a property2 mentions
- Using the CONTAINS PredicateFiltering Queriesthe query to filter by the role property of the1 mention
- Ordering Multiple ValuesControlling Results Returnedthe Person node's name and born property to the2 mentions
- Ordering Returned ResultsControlling Results Returnedyou return results as nodes or as properties of nodes, you can specify a property value for the10 mentions
- Adding GenresPipelining Queriesrelationship is used to created a list of actors for each movie. The properties imdbId and name are returned for each2 mentions
- Map Projections to Return DataControlling Results Returnedcan either view them as a graph, or you can view them in table view where all properties for a node are a single8 mentions
- Top MoviesPipelining Queriesthis query to add the following properties to the map1 mention
Importing CSV data into Neo4j50 mentions
- Add the languages propertyData Types, Lists, and Labelschallenge is to modify this Cypher query to add the languages property2 mentions
- Adding PropertiesData Types, Lists, and Labelsthis challenge, you will update the import to add new properties to the Movie nodes and cast them to the correct7 mentions
- ListsData Types, Lists, and LabelsMulti-value properties and lists How to transform a string value into a list The8 mentions
- Unique IDs and ConstraintsCreating Nodes, Properties, and RelationshipsNeo4j best practice is to use an ID as a unique property value for each8 mentions
Cypher Fundamentals66 mentions
- Updating PropertiesWriting Data to Neo4jthis lesson you will learn how to write Cypher code to update properties of nodes and17 mentions
- Adding or Updating a MovieWriting Data to Neo4jThe createdAt property should be set to the current date and time when the node is5 mentions
- Creating a NodeWriting Data to Neo4jCypher to create a new Person node with the name property of Daniel Kaluuya2 mentions
- Adding Properties to a MovieWriting Data to Neo4jthis Cypher, you will see that the tagline and released properties are2 mentions
Using Neo4j with Go1 mention
- Accessing Graph TypesHandling resultsyour knowledge of how to access properties from nodes and types from relationships returned by the Neo4j Go1 mention
Importing Data Fundamentals62 mentions
- Properties and TypesNeo4j Import toolthe last lesson, you created properties on Person nodes by automatically mapping them from the source CSV12 mentions
- Unique IDs and ConstraintsNeo4j Import toolID, the Import tool will automatically create a constraint and index for the property14 mentions
Importing Data into Neo4j Workshop63 mentions
- Properties and TypesNeo4j Data ImporterIn the last lesson, you created properties on Person nodes by automatically mapping them from the source CSV11 mentions
- Unique IDs and ConstraintsNeo4j Data ImporterID, Data Importer will automatically create a constraint and index for the property13 mentions
- Data ImporterNeo4j Data ImporterMap properties from the CSV file to the23 mentions
Cypher Indexes and Constraints219 mentions
- Creating Multi-property IndexesUsing Indexes in Neo4jthat a Node key defines multiple properties of a node that make it unique and require the properties to17 mentions
- Creating Existence Constraints on Relationship PropertiesUsing Constraints in Neo4jmay want to ensure that some relationship types always have a particular property11 mentions
- Creating Node Key ConstraintsUsing Constraints in Neo4jNode key is a specialized type of constraint for the properties of a14 mentions
- Using a full-text Index on a Relationship PropertyUsing Full-text Indexes in Neo4jwe want to enable some Lucene-type queries against the role properties of the ACTED_IN relationships in our3 mentions
- Constraints in Neo4jUsing Constraints in Neo4jProperty uniqueness constraints - ensure that all values for a property are28 mentions
- Creating Uniqueness ConstraintsUsing Constraints in Neo4jbest practice is to identify a property for all nodes in the graph that make them17 mentions
- Creating Existence Constraints for Node PropertiesUsing Constraints in Neo4jwant to ensure that some nodes with a given label always have a particular property10 mentions
- Creating Single Property IndexesUsing Indexes in Neo4jthis lesson you will learn how to create a single property RANGE index on a node property or relationship property to optimize17 mentions
- Full-text Indexes in Neo4jUsing Full-text Indexes in Neo4jindexes are useful in applications that must parse property values for evaluating whether the property satisfies the10 mentions
Introduction to Vector Indexes and Unstructured Data18 mentions
- Create the Answer Vector IndexVector indexesnodes have a text and embedding property4 mentions
Cypher Aggregations24 mentions
- Finding the Oldest ActorWorking with Liststhe actors who acted in movies in 2000 and who have a value for the born property2 mentions
Graph Data Modeling Fundamentals79 mentions
- Refactoring Duplicate DataEliminating Duplicate Datathis lesson, you will learn how to eliminate duplication in property values by creating10 mentions
- Creating More NodesModeling NodesUser node will have the following properties4 mentions
- Adding Genre nodesEliminating Duplicate DataChallenge, you eliminated duplication by taking the data in the languages property and creating Language nodes that are related to5 mentions
Graph Type Schema Enforcement43 mentions
- Extend the Graph TypeSchema Enforcement with Graph Typesthe previous lesson, you learned how graph types express property constraints, the difference between SET and ADD, and how to define relationship element1 mention
Building Neo4j Applications with TypeScript22 mentions
- Type CheckingNeo4j & TypeScriptthis statement; the p key may not be included in the record, the .name property may not appear on the Person node, or the type of the property may not be a13 mentions
Building Neo4j Applications with Spring Data48 mentions
- Spring Data Neo4j ProjectionsCustom Cypher for Read and Writeexample, if you have a domain entity with many properties or large values, it becomes cumbersome to work with, alter, and8 mentions
Using Neo4j with .NET14 mentions
- Mapping results to objectsThe Drivera class with properties that match the keys in your query's7 mentions