Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
94c215e
GraphQL stub
radrow Sep 29, 2025
236b341
More GraphQL resolvers and tests
radrow Sep 29, 2025
efda4b3
Fix stupid test dep
radrow Sep 29, 2025
f3f9ab8
Code formatting
ghallak Oct 28, 2025
8eb69d8
Add stats queries
ghallak Oct 29, 2025
33def4e
Refactor graphql schema
ghallak Oct 30, 2025
b5db8e3
Add more queries
ghallak Nov 3, 2025
f65b4a0
Update blocks resolvers and queries
ghallak Nov 5, 2025
f86d0d2
Run mix format
ghallak Nov 5, 2025
83f5589
Micro blocks queries
ghallak Nov 6, 2025
fb9838f
Remove scope from micro blocks query
ghallak Nov 6, 2025
9328cdb
Remove duplicated transactions query
ghallak Nov 6, 2025
402dc90
Fix single transaction query
ghallak Nov 6, 2025
2f1b49a
Fix pending txns queries
ghallak Nov 6, 2025
f8473c6
Remove block query from txns queries
ghallak Nov 6, 2025
78ba564
Comment txns and txns count resolvers
ghallak Nov 6, 2025
041aa34
Fix oracles types, comment extends
ghallak Nov 6, 2025
365fb33
Remove duplicated funs
ghallak Nov 6, 2025
fae4161
Fix all oracle queries
ghallak Nov 6, 2025
3705687
Enable oracle extensions
ghallak Nov 6, 2025
d837ec4
Fix all channel queries
ghallak Nov 6, 2025
a7d9e26
Disable aex9 queries
ghallak Nov 6, 2025
f54dec5
Enable aex9 contract queries
ghallak Nov 6, 2025
670f2e0
Enable aex9 contract balances
ghallak Nov 6, 2025
e4bee66
Enable balance history query
ghallak Nov 6, 2025
513de12
Comment unused aex141 queries and types
ghallak Nov 7, 2025
7ef29eb
Complete the stats queries
ghallak Nov 7, 2025
901c147
Remove duplicated stats types
ghallak Nov 7, 2025
9042c40
Convert map keys from string to atom before return
ghallak Nov 7, 2025
dfa12dc
Add maybe_map to avoid turning nil to string
ghallak Nov 8, 2025
a631307
Use a macro for duplicated pagination and scope args
ghallak Nov 8, 2025
7cd8427
Fix contract queries
ghallak Nov 8, 2025
5437a80
Refactor duplicated code
ghallak Nov 8, 2025
9f005cc
Fix top miners in 24 hs query
ghallak Nov 8, 2025
aef9156
Comment unused name queries
ghallak Nov 8, 2025
92828ac
Add a helper for formatting errors
ghallak Nov 8, 2025
5196cdd
Add query for account activities
ghallak Nov 8, 2025
101283d
Add dex swaps queries
ghallak Nov 8, 2025
a022e48
Add account name claims query
ghallak Nov 8, 2025
286aafb
Name queries cleanup
ghallak Nov 8, 2025
1e23d79
Fix error in dex queries and resolver
ghallak Nov 8, 2025
a780485
Add queries for name updates, transfers, and history
ghallak Nov 8, 2025
fd9630b
Clean up commented code
ghallak Nov 10, 2025
4450361
Refactor pagination args handling
ghallak Nov 10, 2025
b57f481
Add query to get transactions with filter
ghallak Nov 10, 2025
b6b13f3
Add query for transactions count
ghallak Nov 10, 2025
6de6cb9
Add transfers query
ghallak Nov 10, 2025
1d391ce
Add transfers queries for aex9 and aex141
ghallak Nov 10, 2025
83f6415
Add balances queries
ghallak Nov 10, 2025
bb33dfb
Fix issues with aex9_resolver
ghallak Nov 10, 2025
875ebdf
Fix issues with aex141_resolver
ghallak Nov 10, 2025
3183357
Add queries for aex141 tokens
ghallak Nov 10, 2025
ecff4ec
Add query for getting micro block txns
ghallak Nov 10, 2025
4c5b449
Add query for account transactions count
ghallak Nov 10, 2025
82fc169
Add wealth query
ghallak Nov 10, 2025
9acfbef
Fix status query
ghallak Nov 10, 2025
439dfee
Add query for account name pointees
ghallak Nov 10, 2025
b314f45
Add queries for aex141 templates
ghallak Nov 10, 2025
6beb0b9
Fix issue with validating type groups
ghallak Nov 10, 2025
d619601
Move query building to a helper function
ghallak Nov 10, 2025
1ac02f2
Add graphql docs autogen
ghallak Nov 10, 2025
ca109a7
Update the docs
ghallak Nov 11, 2025
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 config/test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
import Config

# Ensure consistent node name for tests to match persisted DB owner (avoids :wrong_db_owner_node)
config :kernel, :distributed, [:'aeternity@localhost']

# Do not start embedded node services for GraphQL/data correctness tests to avoid DB owner mismatch
# Use full node services in tests; ensure you invoke tests with:
# elixir --name aeternity@localhost -S mix test
config :ae_mdw, :start_node_services, true
config :ae_mdw, :sync, true

Comment on lines +3 to +11
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be removed

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this file be restored from master? Is there a reason for this change?

# Sync
config :ae_mdw,
sync: false,
Expand Down
Loading
Loading