0

I've recently started out building a graph database using AWS Neptune. Is there a way to define schema and create database using gremlin_python?

Any tutorial recommendation would be helpful too.

1 Answer 1

3

Amazon Neptune has implicit schema which is sometimes called "schemaless". This means that it does not require the schema to be defined ahead of time. To get started all you need to do is begin adding your data using Gremlin. The "schema" of the data is created by the types of data that are written. e.g. g.addV('person').property('age', 41) will create a vertex with label called person and a property called age.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.