Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

feat(sortKey): allow sortKey or blockHeight to be provided via qu… #76

Merged
merged 21 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
826f29a
feat(sortKey): allow `sortKey` or `blockHeight` to be provided via qu…
Nov 28, 2023
08c691c
fix(interactions): add support for maxBlockheight on interactions end…
Nov 28, 2023
b9875c6
chore(tests): add integration tests for blockHeight and sortKeys
Nov 28, 2023
44fa04b
chore(tests): update docker compose env variables
Nov 28, 2023
fc3759e
fix(gql): fix query param to allow 0 to be provided as blockHeight
Nov 28, 2023
b504466
fix(query): separate sort key and block height into separate state at…
Nov 28, 2023
305a9e6
fix(grapqhl): update graphql to use sorter from warp
Nov 30, 2023
1da0d01
fix(query): separate sort key and block height into separate state at…
Nov 28, 2023
f621eeb
fix(gql): sort interactions in descending sortKey order
Nov 30, 2023
97169f6
fix(interactions): allow sort keys on interactions endpoint
Nov 30, 2023
754d20b
chore(sortKey): add sortKey to every contract evaluation endpoint, up…
Nov 30, 2023
a454ff4
chore(tests): add sortKey checks in all evaluation tests
Nov 30, 2023
5382946
chore(tests): add more tests to validate use of `sortKey` and `blockH…
Nov 30, 2023
9d0126b
chore(tests): fix record test
Nov 30, 2023
062314b
chore: remove unintended console statement
Nov 30, 2023
6e458d1
fix(sortKey): move the sortKey filter out of GQL and do it after all …
Nov 30, 2023
8dcbd08
chore(swagger): update swagger docs
Nov 30, 2023
cf27d27
chore(swagger): add components for response types
Nov 30, 2023
26ee31b
feat(sortKey): add regex to validate sortKeys, add tests
Nov 30, 2023
98d2433
fix(recs): make sortKey non-optional, update variable references to i…
Dec 4, 2023
a0889df
fix(warp): remove A-F in regex for sort keys
Dec 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ services:
environment:
HOST: arns-service
PORT: 3000
GATEWAY_HOST: arlocal
GATEWAY_PORT: 1984
GATEWAY_PROTOCOL: http
GATEWAY_HOST: ${GATEWAY_HOST:-arlocal}
GATEWAY_PORT: ${GATEWAY_PORT:-1984}
GATEWAY_PROTOCOL: ${GATEWAY_PROTOCOL:-http}
depends_on:
- arlocal
- arns-service
Loading