You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add optional, per-query parameters for providing a traceparent and tags (#654)
* Add optional, per-query parameters for traceparent and tags
* Fix merge conflicts
* Fix tests. More merge conflicts
* Address PR feedback
* Tag validation (#658)
* Add validation on per-query tags
* Bump version for beta
* Fix tags type (#661)
* Fix tags type
* 4.8.0-beta.2
* Force "logbeta" tag in publishConfig (#662)
* Set version to 4.8.0
* Version
* Run tests serially because reasons
* Run all node versions in parallel
* npm install
* run npm install with v6
* Remove publishConfig block
* Changelog
* Skip failing test; passes locally
* Removing beta note
* Remove client validation and update tests
---------
Co-authored-by: Trevor Finn <[email protected]>
Co-authored-by: Cleve Stuart <[email protected]>
Co-authored-by: Henry Ball <[email protected]>
Allows for associating user-provided tags with a query.
280
+
```javascript
281
+
var data =client.query(q.Paginate(q.Collections()), {
282
+
tags: { key1:"value1", key2:"value2" },
283
+
})
284
+
```
285
+
Both tags and their associated values, must be strings. The only allowable characters are alphanumeric values as well
286
+
as an underscope (_). Max length for keys is 40 characters. Max length for values is 60 characters.
287
+
265
288
#### Custom Fetch
266
289
267
290
To use a custom `fetch()` you just have to specify it in the configuration and make it compatible with the [standard Web API Specification of the Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
0 commit comments