diff --git a/ui/src/graphql/generated/index.ts b/ui/src/graphql/generated/index.ts index 0a676aca..23cac4e6 100644 --- a/ui/src/graphql/generated/index.ts +++ b/ui/src/graphql/generated/index.ts @@ -1235,6 +1235,7 @@ export type CandidateQuery = { playerOffset: number; timestamp: Date; visible?: boolean | null; + sourceIp?: string | null; }>; } | null; }; @@ -1949,6 +1950,7 @@ export const CandidateDocument = ` playerOffset timestamp visible + sourceIp } } } diff --git a/ui/src/graphql/queries/getCandidate.graphql b/ui/src/graphql/queries/getCandidate.graphql index 4249f599..88196715 100644 --- a/ui/src/graphql/queries/getCandidate.graphql +++ b/ui/src/graphql/queries/getCandidate.graphql @@ -20,6 +20,7 @@ query candidate($id: ID!) { playerOffset timestamp visible + sourceIp } } }