Skip to content

Commit

Permalink
Change network id to float in gql schema to fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ae2079 committed Jul 17, 2024
1 parent 8f1df53 commit 609803a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/graphqlQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ export const fetchNewProjectsPerDate = `
$toDate: String
$onlyListed: Boolean
$onlyVerified: Boolean
$networkId: Int
$networkId: Float
) {
projectsPerDate(
fromDate: $fromDate
Expand All @@ -524,7 +524,7 @@ export const fetchTotalDonationsPerCategoryPerDate = `
query (
$fromDate: String
$toDate: String
$networkId: Int
$networkId: Float
$onlyVerified: Boolean
) {
totalDonationsPerCategory(
Expand Down Expand Up @@ -566,7 +566,7 @@ export const fetchTotalDonors = `
query (
$fromDate: String
$toDate: String
$networkId: Int
$networkId: Float
) {
totalDonorsCountPerDate(
fromDate: $fromDate
Expand All @@ -586,7 +586,7 @@ export const fetchTotalDonationsUsdAmount = `
query (
$fromDate: String
$toDate: String
$networkId: Int
$networkId: Float
$onlyVerified: Boolean
) {
donationsTotalUsdPerDate (
Expand All @@ -608,7 +608,7 @@ export const fetchTotalDonationsNumberPerDateRange = `
query (
$fromDate: String
$toDate: String
$networkId: Int
$networkId: Float
$onlyVerified: Boolean
) {
totalDonationsNumberPerDate (
Expand Down

0 comments on commit 609803a

Please sign in to comment.