Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions pages/memgraph-zero/memgql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: MemGQL
description: MemGQL documentation and reference.
---

import { SocialCards } from '/components/social-card/SocialCards';
import { SocialCard } from '/components/social-card/SocialCard';
import Discord from '/components/icons/Discord';
import GitHub from '/components/icons/GitHub';

# MemGQL

MemGQL is a federated GQL ([ISO/IEC
Expand Down Expand Up @@ -30,5 +35,35 @@ details. Review the [Licensing](/memgraph-zero/memgql/licensing) information for
of use, and check the [Changelog](/memgraph-zero/memgql/changelog) to stay updated on
the latest improvements.

## Questions & Feedback

Have questions or want to share feedback? We'd love to hear from you!

<SocialCards>
<SocialCard
icon={<Discord />}
title="Discord"
body="Chat with the community"
href="https://discord.gg/memgraph"
is_external={true}
/>
<SocialCard
icon={<GitHub />}
title="GitHub Issues"
body="Report bugs or request features"
href="https://github.com/memgraph/memgraph/issues"
is_external={true}
/>
<SocialCard
icon={<GitHub />}
title="GitHub Discussions"
body="Start longer form discussions"
href="https://github.com/memgraph/memgraph/discussions"
is_external={true}
/>
</SocialCards>

## MemGQL Enterprise

Interested in MemGQL Enterprise? [Get in
touch](https://memgraph.com/contact-us) with our team to learn more.
4 changes: 4 additions & 0 deletions pages/memgraph-zero/memgql/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ description: MemGQL release notes

# MemGQL Changelog

## MemGQL v0.3.1 - April 27th, 2026

-

## MemGQL v0.3.0 - April 26th, 2026

- Added Apache Pinot connector support, including `CONNECTION_TYPE=pinot` single mode and multi-connection mode
Expand Down
2 changes: 2 additions & 0 deletions pages/memgraph-zero/memgql/connect/_meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ export default {
"memgraph": "to Memgraph",
"neo4j": "to Neo4j",
"postgres": "to PostgreSQL",
"mysql": "to MySQL",
"pinot": "to Pinot",
}
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/clickhouse.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#clickhouse-clickhouse).
For environment variables, see [Reference](../reference.mdx#clickhouse-clickhouse).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/duckdb.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#duckdb-duckdb).
For environment variables, see [Reference](../reference.mdx#duckdb-duckdb).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/iceberg.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#iceberg-iceberg).
For environment variables, see [Reference](../reference.mdx#iceberg-iceberg).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/memgraph.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#memgraph-memgraph-memgraph-gql).
For environment variables, see [Reference](../reference.mdx#memgraph-memgraph-memgraph-gql).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/mysql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
- Aliased single-table `DELETE` is emitted as the multi-table form
`DELETE alias FROM table AS alias WHERE …` (MySQL 8.0+ requirement).

For environment variables, see [Configuration](../config.mdx#mysql-mysql).
For environment variables, see [Reference](../reference.mdx#mysql-mysql).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/neo4j.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#neo4j-neo4j-neo4j-gql).
For environment variables, see [Reference](../reference.mdx#neo4j-neo4j-neo4j-gql).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/pinot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#apache-pinot-pinot).
For environment variables, see [Reference](../reference.mdx#apache-pinot-pinot).
2 changes: 1 addition & 1 deletion pages/memgraph-zero/memgql/connect/postgres.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ MATCH (p:Person)-[:WORKS_AT]->(c:Company) RETURN p.name, c.name;
MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN a.name, b.name;
```

For environment variables, see [Configuration](../config.mdx#postgresql-postgres).
For environment variables, see [Reference](../reference.mdx#postgresql-postgres).