typeql-grammar


Nametypeql-grammar JSON
Version 2.28.0 PyPI version JSON
download
home_pagehttps://github.com/vaticle/typeql
SummaryTypeQL Grammar for Python
upload_time2024-04-11 16:24:09
maintainerNone
docs_urlNone
authorVaticle
requires_python>0
licenseAGPLv3
keywords typeql typedb database strongly-typed
VCS
bugtrack_url
requirements antlr4-python3-runtime
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![TypeQL](./banner.png)](https://typedb.com/docs/typeql/2.x/overview)

[![Factory](https://factory.vaticle.com/api/status/vaticle/typeql/badge.svg)](https://factory.vaticle.com/vaticle/typeql)
[![GitHub release](https://img.shields.io/github/release/vaticle/typeql.svg)](https://github.com/vaticle/typeql/releases/latest)
[![Discord](https://img.shields.io/discord/665254494820368395?color=7389D8&label=chat&logo=discord&logoColor=ffffff)](https://typedb.com/discord)
[![Discussion Forum](https://img.shields.io/badge/discourse-forum-blue.svg)](https://forum.typedb.com)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typedb-796de3.svg)](https://stackoverflow.com/questions/tagged/typedb)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typeql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/typeql)
[![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=flat)](https://cloudsmith.com)

# Introducing TypeQL

TypeQL is the query language of **[TypeDB](https://github.com/vaticle/typedb)**.

- **Conceptual and intuitive**. TypeQL is based directly on the [conceptual data model](https://development.typedb.com/philosophy) of TypeDB. Its queries comprise sequences of statements that assemble into [patterns](https://development.typedb.com/features#modern-language). This mirrors natural language and makes it easy and intuitive to express even highly complex queries.
- **Fully declarative and composable** TypeQL is fully declarative, allowing us to define query patterns without considering execution strategy. The user only composes sets of requirements, and TypeDB finds all matching data to process. 
- **A fully variablizable language**. Any concept in TypeQL has a type, and so any concept in TypeQL can be variablized in a query – even types! This enables TypeQL to express powerful [parametric](https://typedb.com/features#polymorphic-queries) database operations.
- **Built for consistency**. TypeQL patterns are underpinned by a powerful type system that ensure safety and consistency of database applications.

For a quick overview of the range of statements that are available in TypeQL check out our [TypeQL in 20 queries guide](https://typedb.com/docs/).

> **IMPORTANT NOTE:** > > TypeDB & TypeQL are in the process of being rewritten in [Rust](https://www.rust-lang.org). There will be significant refinement to the language, and minor breaks in backwards compatibility. Learn about the changes on our [roadmap issue on GitHub](https://github.com/vaticle/typedb/issues/6764). The biggest change to TypeDB 3.0 will be our storage data structure and architecture that significantly boosts performance. We’re aiming to release 3.0 in the summer this year, along with preliminary benchmarks of TypeDB.

## A polymorphic query language

### Define types, inheritance, and interfaces

TypeQL features the type system of the [Polymorphic Entity-Relation-Attribute](https://typedb.com/philosophy) (PERA) model: entities are independent concepts, relations depend on role interfaces played by either entities or relations, and attributes are properties with a value that can interface with (namely, be owned by) entities or relations. Entities, relations, and attributes are all considered first-class citizens and can be subtyped, allowing for expressive modeling without the need for normalization or reification.

```php
define

id sub attribute, value string;
email sub id;
path sub id;
name sub id;

user sub entity,
    owns email @unique,
    plays permission:subject,
    plays request:requestee;
file sub entity,
    owns path,
    plays permission:object;
action sub entity,
    owns name,
    plays permission:action;

permission sub relation,
    relates subject,
    relates object,
    relates action,
    plays request:target;
request sub relation,
    relates target,
    relates requestee;
```


### Write polymorphic database queries 

Use subtyping to query a common supertype and automatically retrieve matching data. Variablize queries to return types, roles, and data. New types added to the schema are automatically included in the results of pre-existing queries against their supertype, so no refactoring is necessary.

```
match $user isa user,
    has full-name $name,
    has email $email;
# This returns all users of any type

match $user isa employee,
    has full-name $name,
    has email $email,
    has employee-id $id;
# This returns only users who are employees

match $user-type sub user;
$user isa $user-type,
    has full-name $name,
    has email $email;
# This returns all users and their type
```


## Building queries with ease

### Gain clarity through natural and fully declarative syntax

TypeQL's near-natural syntax and fully declarative properties make queries easily understandable, reducing the learning curve and easing maintenance. This allows you to define query patterns without considering execution strategy. TypeDB's query planner always optimizes queries, so you don't have to worry about the logical implementation.

```php
match
$kevin isa user, has email "kevin@vaticle.com";

insert
$chloe isa full-time-employee,
    has full-name "Chloé Dupond",
    has email "chloe@vaticle.com",
    has employee-id 185,
    has weekly-hours 35;
$hire (employee: $chloe, ceo: $kevin) isa hiring,
    has date 2023-09-27;
```

### Develop modularly with fully composable query patterns

TypeDB's TypeQL query language uses pattern matching to find data. Patterns in TypeQL are fully composable. Every complex pattern can be broken down into a conjunction of atomic constraints, which can be concatenated in any order. Any pattern composed of valid constraints is guaranteed to be valid itself, no matter how complex.

```php
match 
$user isa user;

match
$user isa user;
$user has email "john@vaticle.com";

match
$user isa user;
$user has email "john@vaticle.com";
(team: $team, member: $user) isa team-membership;

match
$user isa user;
$user has email "john@vaticle.com";
(team: $team, member: $user) isa team-membership;
$team has name "Engineering";
```


## TypeQL grammar

> Note: All TypeDB Clients, as well as TypeDB Console, accept TypeQL syntax natively. 
> If you are using TypeDB, you do not need additional libraries/tools to use TypeQL syntax natively.
> However, if you would like to construct TypeQL queries programmatically, you can do so with "Language Libraries" listed below.

- [TypeQL Grammar](https://github.com/vaticle/typeql/blob/master/grammar/README.md)
- [TypeQL Language Library for Java](https://github.com/vaticle/typeql/blob/master/java)
- [TypeQL Language Library for Rust (under development)](https://github.com/vaticle/typeql/blob/master/rust)
- [TypeQL Language Library for Python (under development)](https://github.com/typedb-osi/typeql-lang-python)


## Resources

### Developer resources

- Documentation: https://typedb.com/docs
- Discussion Forum: https://forum.typedb.com/
- Discord Chat Server: https://typedb.com/discord
- Community Projects: https://github.com/typedb-osi

### Useful links

If you want to begin your journey with TypeDB, you can explore the following resources:

* More on TypeDB's [features](https://typedb.com/features)
* In-depth dive into TypeDB's [philosophy](https://typedb.com/philosophy)
* Our [TypeDB quickstart](https://typedb.com/docs/typedb/2.x/quickstart-guide)

## Contributions

TypeDB and TypeQL are built using various open-source frameworks and technologies throughout its evolution. 
Today TypeDB and TypeQL use
[Speedb](https://www.speedb.io/),
[pest](https://pest.rs/),
[SCIP](https://www.scipopt.org),
[Bazel](https://bazel.build),
[gRPC](https://grpc.io),
[ZeroMQ](https://zeromq.org), 
and [Caffeine](https://github.com/ben-manes/caffeine). 

Thank you!

In the past, TypeDB was enabled by various open-source products and communities that we are hugely thankful to:
[RocksDB](https://rocksdb.org),
[ANTLR](https://www.antlr.org),
[Apache Cassandra](http://cassandra.apache.org), 
[Apache Hadoop](https://hadoop.apache.org), 
[Apache Spark](http://spark.apache.org), 
[Apache TinkerPop](http://tinkerpop.apache.org), 
and [JanusGraph](http://janusgraph.org). 

### Package hosting
Package repository hosting is graciously provided by  [Cloudsmith](https://cloudsmith.com).
Cloudsmith is the only fully hosted, cloud-native, universal package management solution, that
enables your organization to create, store and share packages in any format, to any place, with total
confidence.

## Licensing

TypeQL grammar and language libraries are provided under the Mozilla Public License 2.0 (MPL 2.0),
and therefore freely usable without restriction when unmodified.

The full license can be founder at: [LICENSE](https://github.com/vaticle/typeql/blob/master/LICENSE).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vaticle/typeql",
    "name": "typeql-grammar",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">0",
    "maintainer_email": null,
    "keywords": "typeql typedb database strongly-typed",
    "author": "Vaticle",
    "author_email": "community@vaticle.com",
    "download_url": "https://files.pythonhosted.org/packages/5f/7e/572b728a5a36b8ac5354fea3682b44c0b63d1fe94d29eb56694aef85f74b/typeql-grammar-2.28.0.tar.gz",
    "platform": null,
    "description": "[![TypeQL](./banner.png)](https://typedb.com/docs/typeql/2.x/overview)\n\n[![Factory](https://factory.vaticle.com/api/status/vaticle/typeql/badge.svg)](https://factory.vaticle.com/vaticle/typeql)\n[![GitHub release](https://img.shields.io/github/release/vaticle/typeql.svg)](https://github.com/vaticle/typeql/releases/latest)\n[![Discord](https://img.shields.io/discord/665254494820368395?color=7389D8&label=chat&logo=discord&logoColor=ffffff)](https://typedb.com/discord)\n[![Discussion Forum](https://img.shields.io/badge/discourse-forum-blue.svg)](https://forum.typedb.com)\n[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typedb-796de3.svg)](https://stackoverflow.com/questions/tagged/typedb)\n[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typeql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/typeql)\n[![Hosted By: Cloudsmith](https://img.shields.io/badge/OSS%20hosting%20by-cloudsmith-blue?logo=cloudsmith&style=flat)](https://cloudsmith.com)\n\n# Introducing TypeQL\n\nTypeQL is the query language of **[TypeDB](https://github.com/vaticle/typedb)**.\n\n- **Conceptual and intuitive**. TypeQL is based directly on the [conceptual data model](https://development.typedb.com/philosophy) of TypeDB. Its queries comprise sequences of statements that assemble into [patterns](https://development.typedb.com/features#modern-language). This mirrors natural language and makes it easy and intuitive to express even highly complex queries.\n- **Fully declarative and composable** TypeQL is fully declarative, allowing us to define query patterns without considering execution strategy. The user only composes sets of requirements, and TypeDB finds all matching data to process. \n- **A fully variablizable language**. Any concept in TypeQL has a type, and so any concept in TypeQL can be variablized in a query \u2013 even types! This enables TypeQL to express powerful [parametric](https://typedb.com/features#polymorphic-queries) database operations.\n- **Built for consistency**. TypeQL patterns are underpinned by a powerful type system that ensure safety and consistency of database applications.\n\nFor a quick overview of the range of statements that are available in TypeQL check out our [TypeQL in 20 queries guide](https://typedb.com/docs/).\n\n> **IMPORTANT NOTE:** > > TypeDB & TypeQL are in the process of being rewritten in [Rust](https://www.rust-lang.org). There will be significant refinement to the language, and minor breaks in backwards compatibility. Learn about the changes on our [roadmap issue on GitHub](https://github.com/vaticle/typedb/issues/6764). The biggest change to TypeDB 3.0 will be our storage data structure and architecture that significantly boosts performance. We\u2019re aiming to release 3.0 in the summer this year, along with preliminary benchmarks of TypeDB.\n\n## A polymorphic query language\n\n### Define types, inheritance, and interfaces\n\nTypeQL features the type system of the [Polymorphic Entity-Relation-Attribute](https://typedb.com/philosophy) (PERA) model: entities are independent concepts, relations depend on role interfaces played by either entities or relations, and attributes are properties with a value that can interface with (namely, be owned by) entities or relations. Entities, relations, and attributes are all considered first-class citizens and can be subtyped, allowing for expressive modeling without the need for normalization or reification.\n\n```php\ndefine\n\nid sub attribute, value string;\nemail sub id;\npath sub id;\nname sub id;\n\nuser sub entity,\n    owns email @unique,\n    plays permission:subject,\n    plays request:requestee;\nfile sub entity,\n    owns path,\n    plays permission:object;\naction sub entity,\n    owns name,\n    plays permission:action;\n\npermission sub relation,\n    relates subject,\n    relates object,\n    relates action,\n    plays request:target;\nrequest sub relation,\n    relates target,\n    relates requestee;\n```\n\n\n### Write polymorphic database queries \n\nUse subtyping to query a common supertype and automatically retrieve matching data. Variablize queries to return types, roles, and data. New types added to the schema are automatically included in the results of pre-existing queries against their supertype, so no refactoring is necessary.\n\n```\nmatch $user isa user,\n    has full-name $name,\n    has email $email;\n# This returns all users of any type\n\nmatch $user isa employee,\n    has full-name $name,\n    has email $email,\n    has employee-id $id;\n# This returns only users who are employees\n\nmatch $user-type sub user;\n$user isa $user-type,\n    has full-name $name,\n    has email $email;\n# This returns all users and their type\n```\n\n\n## Building queries with ease\n\n### Gain clarity through natural and fully declarative syntax\n\nTypeQL's near-natural syntax and fully declarative properties make queries easily understandable, reducing the learning curve and easing maintenance. This allows you to define query patterns without considering execution strategy. TypeDB's query planner always optimizes queries, so you don't have to worry about the logical implementation.\n\n```php\nmatch\n$kevin isa user, has email \"kevin@vaticle.com\";\n\ninsert\n$chloe isa full-time-employee,\n    has full-name \"Chlo\u00e9 Dupond\",\n    has email \"chloe@vaticle.com\",\n    has employee-id 185,\n    has weekly-hours 35;\n$hire (employee: $chloe, ceo: $kevin) isa hiring,\n    has date 2023-09-27;\n```\n\n### Develop modularly with fully composable query patterns\n\nTypeDB's TypeQL query language uses pattern matching to find data. Patterns in TypeQL are fully composable. Every complex pattern can be broken down into a conjunction of atomic constraints, which can be concatenated in any order. Any pattern composed of valid constraints is guaranteed to be valid itself, no matter how complex.\n\n```php\nmatch \n$user isa user;\n\nmatch\n$user isa user;\n$user has email \"john@vaticle.com\";\n\nmatch\n$user isa user;\n$user has email \"john@vaticle.com\";\n(team: $team, member: $user) isa team-membership;\n\nmatch\n$user isa user;\n$user has email \"john@vaticle.com\";\n(team: $team, member: $user) isa team-membership;\n$team has name \"Engineering\";\n```\n\n\n## TypeQL grammar\n\n> Note: All TypeDB Clients, as well as TypeDB Console, accept TypeQL syntax natively. \n> If you are using TypeDB, you do not need additional libraries/tools to use TypeQL syntax natively.\n> However, if you would like to construct TypeQL queries programmatically, you can do so with \"Language Libraries\" listed below.\n\n- [TypeQL Grammar](https://github.com/vaticle/typeql/blob/master/grammar/README.md)\n- [TypeQL Language Library for Java](https://github.com/vaticle/typeql/blob/master/java)\n- [TypeQL Language Library for Rust (under development)](https://github.com/vaticle/typeql/blob/master/rust)\n- [TypeQL Language Library for Python (under development)](https://github.com/typedb-osi/typeql-lang-python)\n\n\n## Resources\n\n### Developer resources\n\n- Documentation: https://typedb.com/docs\n- Discussion Forum: https://forum.typedb.com/\n- Discord Chat Server: https://typedb.com/discord\n- Community Projects: https://github.com/typedb-osi\n\n### Useful links\n\nIf you want to begin your journey with TypeDB, you can explore the following resources:\n\n* More on TypeDB's [features](https://typedb.com/features)\n* In-depth dive into TypeDB's [philosophy](https://typedb.com/philosophy)\n* Our [TypeDB quickstart](https://typedb.com/docs/typedb/2.x/quickstart-guide)\n\n## Contributions\n\nTypeDB and TypeQL are built using various open-source frameworks and technologies throughout its evolution. \nToday TypeDB and TypeQL use\n[Speedb](https://www.speedb.io/),\n[pest](https://pest.rs/),\n[SCIP](https://www.scipopt.org),\n[Bazel](https://bazel.build),\n[gRPC](https://grpc.io),\n[ZeroMQ](https://zeromq.org), \nand [Caffeine](https://github.com/ben-manes/caffeine). \n\nThank you!\n\nIn the past, TypeDB was enabled by various open-source products and communities that we are hugely thankful to:\n[RocksDB](https://rocksdb.org),\n[ANTLR](https://www.antlr.org),\n[Apache Cassandra](http://cassandra.apache.org), \n[Apache Hadoop](https://hadoop.apache.org), \n[Apache Spark](http://spark.apache.org), \n[Apache TinkerPop](http://tinkerpop.apache.org), \nand [JanusGraph](http://janusgraph.org). \n\n### Package hosting\nPackage repository hosting is graciously provided by  [Cloudsmith](https://cloudsmith.com).\nCloudsmith is the only fully hosted, cloud-native, universal package management solution, that\nenables your organization to create, store and share packages in any format, to any place, with total\nconfidence.\n\n## Licensing\n\nTypeQL grammar and language libraries are provided under the Mozilla Public License 2.0 (MPL 2.0),\nand therefore freely usable without restriction when unmodified.\n\nThe full license can be founder at: [LICENSE](https://github.com/vaticle/typeql/blob/master/LICENSE).\n",
    "bugtrack_url": null,
    "license": "AGPLv3",
    "summary": "TypeQL Grammar for Python",
    "version": "2.28.0",
    "project_urls": {
        "Homepage": "https://github.com/vaticle/typeql"
    },
    "split_keywords": [
        "typeql",
        "typedb",
        "database",
        "strongly-typed"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3789cc9b588e3d2630be1a0c9b04017d8497b0c47b38eba820a6bbd40989a848",
                "md5": "f25f4bc181fb437ed3233dd5bef02eb3",
                "sha256": "3db8ce7fcb4dfd4efa3cecb66fa29a881deff721b7b75b41299c7fbfe7680414"
            },
            "downloads": -1,
            "filename": "typeql_grammar-2.28.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f25f4bc181fb437ed3233dd5bef02eb3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">0",
            "size": 4775,
            "upload_time": "2024-04-11T16:24:08",
            "upload_time_iso_8601": "2024-04-11T16:24:08.150477Z",
            "url": "https://files.pythonhosted.org/packages/37/89/cc9b588e3d2630be1a0c9b04017d8497b0c47b38eba820a6bbd40989a848/typeql_grammar-2.28.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7e572b728a5a36b8ac5354fea3682b44c0b63d1fe94d29eb56694aef85f74b",
                "md5": "1a8f42130560f6f1d25c0cf23aa91482",
                "sha256": "b43f2d61f012e8f2b5b73c963f75808ea451864f48cd840e40ada7a4b6fe1041"
            },
            "downloads": -1,
            "filename": "typeql-grammar-2.28.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1a8f42130560f6f1d25c0cf23aa91482",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">0",
            "size": 5467,
            "upload_time": "2024-04-11T16:24:09",
            "upload_time_iso_8601": "2024-04-11T16:24:09.900781Z",
            "url": "https://files.pythonhosted.org/packages/5f/7e/572b728a5a36b8ac5354fea3682b44c0b63d1fe94d29eb56694aef85f74b/typeql-grammar-2.28.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 16:24:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vaticle",
    "github_project": "typeql",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "antlr4-python3-runtime",
            "specs": [
                [
                    "==",
                    "4.7.2"
                ]
            ]
        }
    ],
    "lcname": "typeql-grammar"
}
        
Elapsed time: 0.26129s