We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa007f9 commit 34a5c33Copy full SHA for 34a5c33
docs/usage/querying.rst
@@ -144,8 +144,13 @@ Use non-standard OData URL Query parameters
144
145
Sometimes services implement extension to OData model and require addition URL
146
query parameters. In such a case, you can enrich HTTP request made by pyodata with
147
-these parameters by the method `custom(name: str, value: str)`.
+these parameters by the method `custom(name: str, value: str)`.
148
149
.. code-block:: python
150
151
employee = northwind.entity_sets.Employees.get_entity(1).custom('sap-client', '100').execute()
152
+
153
+.. code-block:: python
154
155
+ employees = northwind.entity_sets.Employees.get_entities().custom('sap-client', '100').custom('$skiptoken', 'ABCD').top(10).execute()
156
0 commit comments