Skip to content

Commit

Permalink
Merge pull request #1086 from geyserfund/fix/remove-unnecessary-query…
Browse files Browse the repository at this point in the history
…-fields

fix: remove tags and funding tx count
  • Loading branch information
sajald77 authored Aug 9, 2023
2 parents 4cc5b9f + 280da9a commit 16ea1aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
7 changes: 0 additions & 7 deletions src/graphql/fragments/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,10 @@ export const FRAGMENT_PROJECT_FOR_LANDING_PAGE = gql`
id
name
balance
createdAt
fundersCount
fundingTxsCount
thumbnailImage
shortDescription
tags {
id
label
}
title
status
owners {
id
user {
Expand Down
11 changes: 0 additions & 11 deletions src/types/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4340,14 +4340,10 @@ export type ProjectForLandingPageFragment = {
id: any
name: any
balance: number
createdAt: string
fundersCount?: number | null
fundingTxsCount?: number | null
thumbnailImage?: string | null
shortDescription?: any | null
title: any
status?: ProjectStatus | null
tags: Array<{ __typename?: 'Tag'; id: number; label: string }>
owners: Array<{
__typename?: 'Owner'
id: any
Expand Down Expand Up @@ -6084,17 +6080,10 @@ export const ProjectForLandingPageFragmentDoc = gql`
id
name
balance
createdAt
fundersCount
fundingTxsCount
thumbnailImage
shortDescription
tags {
id
label
}
title
status
owners {
id
user {
Expand Down

0 comments on commit 16ea1aa

Please sign in to comment.