Skip to content

Commit

Permalink
Merge pull request #1701 from RostykL/doc-remove-redundant-article
Browse files Browse the repository at this point in the history
doc: remove redundant article
  • Loading branch information
loks0n authored Jan 31, 2025
2 parents d247e51 + 562b308 commit 10be389
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/routes/docs/products/databases/queries/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -56,7 +56,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query::isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query::startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query::endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query::contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query::contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query::contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query::search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query::orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -84,7 +84,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.is_not_null("name")` | Returns documents where attribute value is **not** null. |
| `Query.starts_with("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.ends_with("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.order_desc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -112,7 +112,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.is_not_null("name")` | Returns documents where attribute value is **not** null. |
| `Query.starts_with("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.ends_with("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.order_desc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -140,7 +140,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -168,7 +168,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -196,7 +196,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", value: "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", value: "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", value: ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", value: ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", value: "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", value: "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -224,7 +224,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -252,7 +252,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -280,7 +280,7 @@ Appwrite SDKs provide a `Query` class to help you build queries. The `Query` cla
| `Query.isNotNull("name")` | Returns documents where attribute value is **not** null. |
| `Query.startsWith("name", "Once upon a time")` | Returns documents if a string attributes starts with a substring. |
| `Query.endsWith("name", "happily ever after.")` | Returns documents if a string attributes ends with a substring. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if a the array attribute contains the specified elements. |
| `Query.contains("ingredients", ['apple', 'banana'])` | Returns documents if the array attribute contains the specified elements. |
| `Query.contains("name", "Tom")` | Returns documents if a string attributes is like the pattern specified. |
| `Query.search("text", "key words")` | Searches string attributes for provided keywords. Requires a [full-text index](/docs/products/databases/collections#indexes) on queried attributes. |
| `Query.orderDesc("attribute")` | Orders results in descending order by attribute. Attribute must be indexed. Pass in an empty string to return in natural order. |
Expand Down Expand Up @@ -417,4 +417,4 @@ query {
}
}
```
{% /multicode %}
{% /multicode %}

0 comments on commit 10be389

Please sign in to comment.