Usage
Signature:
interface FetchFirstCapability<D>
Generic Parameters
Parameter Description D Type of Data
Typescript Import Format
//To use this interface, import as below.
import {FetchFirstCapability} from "ojs/ojdataprovider";
For additional information visit:
Fields
-
(nullable) attributeFilter :AttributeFilterCapability
-
Optional detailed attribute filter capability information
- Since:
- 10.0.0
-
(nullable) caching :('all'|'none'|'visitedByCurrentIterator')
-
Optional detailed caching capability information
- Since:
- 10.0.0
-
iterationSpeed :"immediate"|"delayed"
-
The speed of iteration. Possible values are:
- "immediate": the iteration speed is immediate. Specifically, the iterator returned by fetchFirst is capable of returning a Promise that is resolved with results immediately.
- "delayed": the iteration speed is delayed. Specifically, the iterator returned by fetchFirst might not be able to return results immediately.
- Since:
- 10.0.0