Skip to content
New issue

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

graphql hackathon async graphql #23

Open
wants to merge 49 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
e088ae1
base setup
dekkku Sep 10, 2024
32d3615
clean up of not required deps
dekkku Sep 10, 2024
fc5b0ee
update lock file
dekkku Sep 10, 2024
9270556
fix the endpoint
dekkku Sep 10, 2024
db8b11c
use data loaders to load the data
dekkku Sep 10, 2024
60438f9
removed logs
dekkku Sep 10, 2024
9fd6bf6
Merge branch 'tailcallhq:main' into hackathon-with-async-graphql
dekkku Sep 10, 2024
c46627b
Merge branch 'hackathon-with-async-graphql' of https://github.com/dek…
dekkku Sep 10, 2024
168128a
Merge branch 'main' into hackathon-with-async-graphql
meskill Sep 10, 2024
ab4b23c
used dataloaders to solve N+1 problem
dekkku Sep 10, 2024
aad373b
Merge branch 'hackathon-with-async-graphql' of https://github.com/dek…
dekkku Sep 10, 2024
15a3dc7
Merge branch 'main' into hackathon-with-async-graphql
dekkku Sep 10, 2024
b031bc6
remove logs
dekkku Sep 10, 2024
79f6898
Merge branch 'hackathon-with-async-graphql' of https://github.com/dek…
dekkku Sep 10, 2024
dc83fdb
exploit reset property of mock server
dekkku Sep 10, 2024
0ad7e2c
make cache smart
dekkku Sep 10, 2024
9ed7550
cache the users and posts
dekkku Sep 10, 2024
069d913
clean up
dekkku Sep 10, 2024
deda9a3
compile urls
dekkku Sep 11, 2024
f20a699
fix typo
dekkku Sep 11, 2024
f581362
clean up
dekkku Sep 11, 2024
bda8d1b
removed reset
dekkku Sep 11, 2024
a80b9f3
clean up
dekkku Sep 11, 2024
14f0dfc
use sampling with caching
dekkku Sep 11, 2024
bb72a18
clean up
dekkku Sep 11, 2024
28e0c5d
- fix tests
dekkku Sep 11, 2024
1e29d6c
Merge branch 'main' into hackathon-with-async-graphql
dekkku Sep 11, 2024
7f90bd8
batch concurrent requests into one.
dekkku Sep 12, 2024
f539dfc
Merge branch 'main' into hackathon-with-async-graphql
dekkku Sep 12, 2024
9d663e2
Merge branch 'main' into hackathon-with-async-graphql
dekkku Sep 12, 2024
de2fc8f
Merge branch 'hackathon-with-async-graphql' of https://github.com/dek…
dekkku Sep 12, 2024
2909ced
added bytes
dekkku Sep 12, 2024
0b6cb06
refactor cache impl
dekkku Sep 12, 2024
91f0755
added old code back for benchmarking
dekkku Sep 12, 2024
6a40a0e
move to bin folder
dekkku Sep 12, 2024
5311397
update shell script
dekkku Sep 12, 2024
357a779
run only main.rs
dekkku Sep 12, 2024
a534a78
revert
dekkku Sep 12, 2024
3551420
revert back to RWLock
dekkku Sep 12, 2024
6dcd048
fix
dekkku Sep 12, 2024
5729989
restore to Store
dekkku Sep 12, 2024
b5993bb
load users upfront
dekkku Sep 12, 2024
7a1b85b
fix
dekkku Sep 12, 2024
c7111f2
Merge branch 'main' into hackathon-with-async-graphql
dekkku Sep 12, 2024
891eb02
bug fixes
dekkku Sep 12, 2024
9ed11a9
handle error in request batcher
dekkku Sep 12, 2024
8e6fe33
query use when asked
dekkku Sep 12, 2024
c3888dd
test dl
dekkku Sep 12, 2024
4edf8d5
clean
dekkku Sep 12, 2024
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
9 changes: 9 additions & 0 deletions projects/dekkku/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.vscode

/target
node_modules

.direnv
.envrc

*.snap.new
Loading