From 85858b17733570a608070dcb26237c770c9e1c81 Mon Sep 17 00:00:00 2001 From: Michael Macaulay Date: Tue, 29 Apr 2025 14:25:46 -0400 Subject: [PATCH 1/2] Quick fix --- website/src/pages/en/subgraphs/querying/graphql-api.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/en/subgraphs/querying/graphql-api.mdx b/website/src/pages/en/subgraphs/querying/graphql-api.mdx index 2c8a6da7fbd7..8a444e5d63db 100644 --- a/website/src/pages/en/subgraphs/querying/graphql-api.mdx +++ b/website/src/pages/en/subgraphs/querying/graphql-api.mdx @@ -350,7 +350,7 @@ Full-text search operators: | Symbol | Operator | Description | | --- | --- | --- | --- | | `&` | `And` | For combining multiple search terms into a filter for entities that include all of the provided terms | -| | | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms | +| `|` | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms | | `<->` | `Follow by` | Specify the distance between two words. | | `:*` | `Prefix` | Use the prefix search term to find words whose prefix match (2 characters required.) | From 54b9a3f719def229f24cb04a7d1e32723e9ad569 Mon Sep 17 00:00:00 2001 From: Michael Macaulay Date: Tue, 29 Apr 2025 16:04:34 -0400 Subject: [PATCH 2/2] Remove spaces --- website/src/pages/en/subgraphs/querying/graphql-api.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/en/subgraphs/querying/graphql-api.mdx b/website/src/pages/en/subgraphs/querying/graphql-api.mdx index 8a444e5d63db..a63750bcc7dc 100644 --- a/website/src/pages/en/subgraphs/querying/graphql-api.mdx +++ b/website/src/pages/en/subgraphs/querying/graphql-api.mdx @@ -350,7 +350,7 @@ Full-text search operators: | Symbol | Operator | Description | | --- | --- | --- | --- | | `&` | `And` | For combining multiple search terms into a filter for entities that include all of the provided terms | -| `|` | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms | +| `|` | `Or` | Queries with multiple search terms separated by the or operator will return all entities with a match from any of the provided terms | | `<->` | `Follow by` | Specify the distance between two words. | | `:*` | `Prefix` | Use the prefix search term to find words whose prefix match (2 characters required.) |