Skip to content

Commit 516c738

Browse files
committed
cleanup, update graphql, update deps
1 parent 7344836 commit 516c738

File tree

14 files changed

+3635
-2010
lines changed

14 files changed

+3635
-2010
lines changed

Diff for: Cargo.lock

+535-414
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ services:
22
db:
33
image: redis:alpine
44
hostname: redis
5+
restart: always
56
volumes:
67
- db_data:/data
78
expose:

Diff for: graphql/CompleteHacktivitySearchQuery.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
query CompleteHacktivitySearchQuery($queryString: String!, $from: Int, $size: Int, $sort: SortInput!) {
22
search(
3-
index: CompleteHacktivityReportIndexService
3+
index: CompleteHacktivityReportIndex
44
query_string: $queryString
55
from: $from
66
size: $size
@@ -10,7 +10,7 @@ query CompleteHacktivitySearchQuery($queryString: String!, $from: Int, $size: In
1010
total_count
1111
nodes {
1212
__typename
13-
... on CompleteHacktivityReportDocument {
13+
... on HacktivityDocument {
1414
_id
1515
reporter {
1616
id

Diff for: graphql/TeamHacktivityPageQuery.graphql

-91
This file was deleted.

0 commit comments

Comments
 (0)