Skip to content

Commit 222bac3

Browse files
Fix errors
1 parent cb39acb commit 222bac3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ The following example filters for challenges with `outcome` `succeeded` and `num
234234
}
235235
```
236236

237-
**Syntactic sugar:** You can simplify the above query by removing the `and` operator by passing a sub-expression separated by commas.
238-
237+
> **Syntactic sugar:** You can simplify the above query by removing the `and` operator by passing a sub-expression separated by commas.
238+
>
239239
> ```graphql
240240
> {
241241
> challenges(where: { number_gte: 100, outcome: "succeeded" }) {
@@ -348,9 +348,9 @@ Full-text search queries have one required field, `text`, for supplying search t
348348
Full-text search operators:
349349

350350
| Symbol | Operator | Description |
351-
| --- | --- | --- |
351+
| --- | --- | --- | --- |
352352
| `&` | `And` | For combining multiple search terms into a filter for entities that include all 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 |
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 |
354354
| `<->` | `Follow by` | Specify the distance between two words. |
355355
| `:*` | `Prefix` | Use the prefix search term to find words whose prefix match (2 characters required.) |
356356

0 commit comments

Comments
 (0)