Rename Vendor to Subprocessor in trust API surface

Rename Vendor → Subprocessor, VendorConnection → SubprocessorConnection, and VendorEdge → SubprocessorEdge across the GraphQL schema, Go resolvers, and React frontend components. Internal coredata types remain unchanged. User-facing labels in console app updated to reflect terminology change.

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-19 23:22:37 +01:00
parent f756b7273d
commit bedfd61168
13 changed files with 99 additions and 99 deletions

View File

@@ -43,7 +43,7 @@ export const currentTrustGraphQuery = graphql`
}
}
...OverviewPageFragment
vendorInfo: vendors(first: 0) {
subprocessorInfo: subprocessors(first: 0) {
totalCount
}
audits(first: 50) {
@@ -97,19 +97,19 @@ export const currentTrustDocumentsQuery = graphql`
}
`;
export const currentTrustVendorsQuery = graphql`
query TrustGraphCurrentVendorsQuery {
export const currentTrustSubprocessorsQuery = graphql`
query TrustGraphCurrentSubprocessorsQuery {
currentTrustCenter {
id
organization {
name
}
vendors(first: 50) {
subprocessors(first: 50) {
edges {
node {
id
countries
...VendorRowFragment
...SubprocessorRowFragment
}
}
}