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
Is your feature request related to a problem? Please describe.
currently our api is not versioned, this leads to risk in API updates, eg. ingestion upsert batch update or query response update
Describe the solution you'd like
Common api versioning strategies:
Version by URL path (ex: /api/v1/foo)
Version by URL query string (ex: /api/foo?api-version=1.0)
Version by HTTP header (ex: api-version: 1.0)
Version by media type negotiation (ex: accept: application/vnd.mycompany.myapp-v2+xml)
The text was updated successfully, but these errors were encountered:
we might worry about this later since as of now the API client of AresDB is also controlled by us. we might be better to ensure the upgrade is backward-compatible instead of make breaking changes
Is your feature request related to a problem? Please describe.
currently our api is not versioned, this leads to risk in API updates, eg. ingestion upsert batch update or query response update
Describe the solution you'd like
Common api versioning strategies:
The text was updated successfully, but these errors were encountered: