Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-app-events
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-app-events
Commits
ef7695bf
Verified
Commit
ef7695bf
authored
2 days ago
by
Alex Timmermann
Browse files
Options
Downloads
Patches
Plain Diff
fix: allow empty geolocation for nearby events
Refs: HOLI-11315
parent
2df481a9
Branches
renovate/europe-north1-docker.pkg.dev-holi-shared-docker-hub-remote-docker-28.x
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/server.ts
+1
-3
1 addition, 3 deletions
app/server.ts
with
1 addition
and
3 deletions
app/server.ts
+
1
−
3
View file @
ef7695bf
import
{
logger
}
from
'
./adapters/Logger.ts
'
import
{
GeoApiClient
}
from
'
./adapters/geo/GeoApiClient.ts
'
import
{
createSchema
,
createYoga
,
GraphQLError
}
from
'
./deps.ts
'
import
{
createSchema
,
createYoga
}
from
'
./deps.ts
'
import
{
QueryEvents
,
QueryEventsInput
,
QueryEventsOutput
}
from
'
./usecases/QueryEvents.ts
'
import
{
JasdGateway
}
from
'
./adapters/jasd/JasdGateway.ts
'
import
{
QueryEvent
,
QueryEventInput
,
QueryEventOutput
}
from
'
./usecases/QueryEvent.ts
'
...
...
@@ -94,8 +94,6 @@ const validateQueryNearbyEventsInput = (request: NearbyEventsRequest): QueryNear
limit
=
50
}
if
(
!
request
.
geolocationId
)
throw
new
GraphQLError
(
'
GeolocationId not present
'
)
return
{
limit
:
limit
,
offset
:
request
.
offset
??
0
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment