diff --git a/apps/console/src/components/form/ThirdPartiesMultiSelectField.tsx b/apps/console/src/components/form/ThirdPartiesMultiSelectField.tsx index 18dab8e3c..df7d7f557 100644 --- a/apps/console/src/components/form/ThirdPartiesMultiSelectField.tsx +++ b/apps/console/src/components/form/ThirdPartiesMultiSelectField.tsx @@ -49,7 +49,11 @@ const thirdPartiesQuery = graphql` query ThirdPartiesMultiSelectFieldQuery($organizationId: ID!) { organization: node(id: $organizationId) { ... on Organization { - thirdParties(first: 100, orderBy: { direction: ASC, field: NAME }) { + thirdParties( + first: 100 + orderBy: { direction: ASC, field: NAME } + filter: { level: 1 } + ) { edges { node { id diff --git a/apps/console/src/components/table/ThirdPartiesCell.tsx b/apps/console/src/components/table/ThirdPartiesCell.tsx index 13fd75d54..53bd99f60 100644 --- a/apps/console/src/components/table/ThirdPartiesCell.tsx +++ b/apps/console/src/components/table/ThirdPartiesCell.tsx @@ -32,6 +32,7 @@ const thirdPartiesCellQuery = graphql` thirdParties( first: 100 orderBy: { direction: ASC, field: NAME } + filter: { level: 1 } ) { edges { node {