Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
olerichter00 committed Feb 4, 2025
1 parent eccb838 commit 3fe2e00
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/app/Scenes/Fair/FeaturedFairsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,15 @@ export const FeaturedFairs: React.FC<FeaturedFairsProps> = ({ viewer }) => {

const viewerFragment = graphql`
fragment FeaturedFairsScreen_viewer on Viewer
@refetchable(queryName: "WorksForYouArtworks_viewerRefetch")
@refetchable(queryName: "FeaturedFairsScreen_viewerRefetch")
@argumentDefinitions(count: { type: "Int", defaultValue: 10 }, cursor: { type: "String" }) {
fairsConnection(after: $cursor, first: $count)
@connection(key: "FeaturedFairsScreen_fairsConnection") {
fairsConnection(
after: $cursor
first: $count
status: CURRENT
sort: START_AT_DESC
hasFullFeature: true
) @connection(key: "FeaturedFairsScreen_fairsConnection") {
edges {
node {
internalID
Expand Down

0 comments on commit 3fe2e00

Please sign in to comment.