Skip to content

Commit

Permalink
docs(filter): fix wrong selector is:(id list) (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasschaub authored Apr 18, 2024
1 parent 778fc83 commit 760174a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

## 1.11.0-SNAPSHOT (current main)

### Other
* Fix filter documentation ([#326])

[#326]: https://github.com/GIScience/ohsome-api/pull/326


## 1.10.2

Expand Down
4 changes: 2 additions & 2 deletions docs/filter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Selectors
| ``id:osm-type/osm-id`` | matches the entity with the given | ``id:node/1234`` |
| | osm type and id | |
+------------------------------------+------------------------------------+-----------------------------------+
| ``id:(id list)`` | matches all entities with the | ``id:(1, 42, 1234)`` |
| ``id:(osm-id list)`` | matches all entities with the | ``id:(1, 42, 1234)`` |
| | given osm ids [1]_ | |
+------------------------------------+------------------------------------+-----------------------------------+
| ``id:(id list)`` | matches all entities with the | ``id:(node/1, way/3)`` |
| ``id:(osm-type/osm-id list)`` | matches all entities with the | ``id:(node/1, way/3)`` |
| | given osm types and ids | |
+------------------------------------+------------------------------------+-----------------------------------+
| ``id:(id range)`` | matches all entities with an id | ``id:(1 .. 9999)`` |
Expand Down

0 comments on commit 760174a

Please sign in to comment.