Skip to content

Commit 842b8bb

Browse files
Fix build
1 parent 615b390 commit 842b8bb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

website/src/pages/en/subgraphs/querying/graphql-api.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ Explore the GraphQL Query API for interacting with Subgraphs on The Graph Networ
1111
## Core Concepts
1212

1313
### Entities
14+
1415
- **What they are**: Persistent data objects defined with `@entity` in your schema
1516
- **Key requirement**: Must contain `id: ID!` as primary identifier
1617
- **Usage**: Foundation for all query operations
1718

1819
### Schema
20+
1921
- **Purpose**: Blueprint defining the data structure and relationships using GraphQL [IDL](https://facebook.github.io/graphql/draft/#sec-Type-System)
2022
- **Key characteristics**:
2123
- Auto-generates query endpoints
@@ -346,9 +348,9 @@ Full-text search queries have one required field, `text`, for supplying search t
346348
Full-text search operators:
347349

348350
| Symbol | Operator | Description |
349-
| --- | --- | --- |
351+
| --- | --- | --- | --- |
350352
| `&` | `And` | For combining multiple search terms into a filter for entities that include all of the provided terms |
351-
| | | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms |
353+
| | | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms |
352354
| `<->` | `Follow by` | Specify the distance between two words. |
353355
| `:*` | `Prefix` | Use the prefix search term to find words whose prefix match (2 characters required.) |
354356

0 commit comments

Comments
 (0)