Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Oppdatert skjema
Browse files Browse the repository at this point in the history
  • Loading branch information
ebelegu committed Jun 16, 2023
1 parent 7528000 commit 3306b51
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bruker.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ type Query {
limit: Int
tekstsoek: String
sakstyper: [String!]
oppgaveTilstand: [OppgaveTilstand!]
sortering: SakSortering! = OPPDATERT
): SakerResultat!
whoami: String
Expand Down Expand Up @@ -44,9 +45,16 @@ type SakerResultat {
"""
sakstyper: [Sakstype!]!

oppgaveTilstandInfo: [OppgaveTilstandInfo!]!

feilAltinn: Boolean!
}

type OppgaveTilstandInfo {
tilstand: OppgaveTilstand!
antall: Int!
}

type OppgaveMetadata {
tilstand: OppgaveTilstand!
frist: ISO8601Date
Expand Down Expand Up @@ -101,6 +109,7 @@ type Oppgave {
sorteringTidspunkt: ISO8601DateTime!
paaminnelseTidspunkt: ISO8601DateTime
utgaattTidspunkt: ISO8601DateTime
utfoertTidspunkt: ISO8601DateTime
frist: ISO8601Date
id: ID!
virksomhet: Virksomhet!
Expand Down
9 changes: 9 additions & 0 deletions component/src/api/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export type Oppgave = {
sorteringTidspunkt: Scalars['ISO8601DateTime'];
tekst: Scalars['String'];
tilstand?: Maybe<OppgaveTilstand>;
utfoertTidspunkt?: Maybe<Scalars['ISO8601DateTime']>;
utgaattTidspunkt?: Maybe<Scalars['ISO8601DateTime']>;
virksomhet: Virksomhet;
};
Expand All @@ -82,6 +83,12 @@ export enum OppgaveTilstand {
Utgaatt = 'UTGAATT'
}

export type OppgaveTilstandInfo = {
__typename?: 'OppgaveTilstandInfo';
antall: Scalars['Int'];
tilstand: OppgaveTilstand;
};

export type Query = {
__typename?: 'Query';
notifikasjoner: NotifikasjonerResultat;
Expand All @@ -95,6 +102,7 @@ export type Query = {
export type QuerySakerArgs = {
limit?: InputMaybe<Scalars['Int']>;
offset?: InputMaybe<Scalars['Int']>;
oppgaveTilstand?: InputMaybe<Array<OppgaveTilstand>>;
sakstyper?: InputMaybe<Array<Scalars['String']>>;
sortering?: SakSortering;
tekstsoek?: InputMaybe<Scalars['String']>;
Expand Down Expand Up @@ -137,6 +145,7 @@ export enum SakStatusType {
export type SakerResultat = {
__typename?: 'SakerResultat';
feilAltinn: Scalars['Boolean'];
oppgaveTilstandInfo: Array<OppgaveTilstandInfo>;
saker: Array<Sak>;
/** Hvilke sakstyper (med antall) som finnes for valgte virksomheter. */
sakstyper: Array<Sakstype>;
Expand Down

0 comments on commit 3306b51

Please sign in to comment.