Skip to content

Commit

Permalink
New translations graphql-api.mdx (Korean)
Browse files Browse the repository at this point in the history
  • Loading branch information
benface committed Dec 16, 2024
1 parent 89f84e6 commit 38c8d5b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions website/pages/ko/querying/graphql-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ The following example filters for challenges with `outcome` `succeeded` and `num
```

> **Syntactic sugar:** You can simplify the above query by removing the `and` operator by passing a sub-expression separated by commas.
>
>
> ```graphql
> {
> challenges(where: { number_gte: 100, outcome: "succeeded" }) {
Expand Down Expand Up @@ -335,12 +335,12 @@ Fulltext search queries have one required field, `text`, for supplying search te

Fulltext 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 |
| `<->` | `Follow by` | Specify the distance between two words. |
| `:*` | `Prefix` | Use the prefix search term to find words whose prefix match (2 characters required.) |
| Symbol | Operator | Description |
| ----------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| `&` | `And` | For combining multiple search terms into a filter for entities that include all of the provided terms |
| &#x7c; | `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.) |

#### Examples

Expand Down

0 comments on commit 38c8d5b

Please sign in to comment.