Skip to content

Commit

Permalink
fix: rebase conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
MounirDhahri committed Dec 14, 2023
1 parent 0f246cb commit b78dc99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schema/v2/filterArtworksConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { pageable } from "relay-cursor-paging"
import {
convertConnectionArgsToGravityArgs,
removeNulls,
removeEmptyValues,
removeObjectEmptyValues,
isExisty,
} from "lib/helpers"
import {
Expand Down Expand Up @@ -491,9 +491,9 @@ const filterArtworksConnectionTypeFactory = (
info
) => {
const argsProvidedAtRoot = convertFilterArgs(rootArguments as any)
removeEmptyValues(argsProvidedAtRoot)
removeObjectEmptyValues(argsProvidedAtRoot)
const argsProvidedInInput = convertFilterArgs(input ?? {})
removeEmptyValues(argsProvidedInInput)
removeObjectEmptyValues(argsProvidedInInput)

const options: any = {
...argsProvidedAtRoot,
Expand Down

0 comments on commit b78dc99

Please sign in to comment.