We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Šiuo metu prie duomenų ir prie keitimų žurnalo (changes) saugomas tranzakcijos numeris _txn UUID formatu.
_txn
Gal būt reikėtu pakeisti _txn tipą vietoj UUID pakeisti į ref tipą, perkeliant UUID į _txn._id?
ref
_txn._id
Tokiu būdu, pagal nutylėjimą būtų gaunami tokie duomenys:
{ "_txn": { "_id": "UUID" } }
Tačiau paprašius daugiau duomenų ?select(_txn.*) arba ?expand(_txn) būtų pateikiama daugiau duomenų:
?select(_txn.*)
?expand(_txn)
{ "_txn": { "_id": "UUID", "timestamp": "ISO-DATE", "client": {"_id": "UUID"}, "txn": {"_id": "UUID"} } }
Kitas variantas palikti _txn: uuid, ir pridėti naują veiksą:
_txn: uuid
GET /datasets/example/dataset/:txn/{uuid}
Kuris grąžintu:
{ "id": "{uuid}", "created": "ISO-DATE", "client": {"_id": "{uuid}"}, "objects": [ { "_id": "{uuid}", "_op": "insert" } ], "page": {"next": "{base64}" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Šiuo metu prie duomenų ir prie keitimų žurnalo (changes) saugomas tranzakcijos numeris
_txn
UUID formatu.Gal būt reikėtu pakeisti
_txn
tipą vietoj UUID pakeisti įref
tipą, perkeliant UUID į_txn._id
?Tokiu būdu, pagal nutylėjimą būtų gaunami tokie duomenys:
Tačiau paprašius daugiau duomenų
?select(_txn.*)
arba?expand(_txn)
būtų pateikiama daugiau duomenų:Kitas variantas palikti
_txn: uuid
, ir pridėti naują veiksą:Kuris grąžintu:
The text was updated successfully, but these errors were encountered: