Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ To execute the request, enter it in the input field on the left and click on the
On the right side you will see the result of the query.

## GraphQL Voyager
You can view API Schema visualization in `/voyager` page in your browser.
To see current production schema go to [here](https://api.beta.hawk.so/voyager)
You can view API Schema visualization in `/voyager` page in your browser. To see current production schema go to [here](https://api.beta.hawk.so/voyager)

## Migrations

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hawk.api",
"version": "1.2.20",
"version": "1.2.21",
"main": "index.ts",
"license": "BUSL-1.1",
"scripts": {
Expand Down
9 changes: 1 addition & 8 deletions src/models/eventsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,14 +321,7 @@ class EventsFactory extends Factory {
? {
$expr: {
$eq: [
{
$convert: {
input: '$event.payload.release',
to: 'string',
onError: '',
onNull: '',
},
},
'$event.payload.release',
String(release),
],
},
Expand Down
Loading