Skip to content

Graphql add field marked_for_deletion_on

Release notes

marked_for_deletion_on attribute missing on group and project objects when using Graphql.

Problem to solve

Only way to retreive marked_for_deletion_on attribute is to use group or project apis, no way to get this attribute using Graphql.

User experience goal

Graphql is more flexible than traditional apis, and can reduce data transfered.

Proposal

query {
projects(membership: false, search: "", first: 100,sort:"id",searchNamespaces:true) {
    nodes {
      id
      path
      markedForDeletionOn
    }
    pageInfo {
      endCursor
      hasNextPage
    }
  }
}

Links / references