Kondo backend API repository, built with NestJS
yarn
yarn runstart:devCreate Org Mutation
mutation createOrg($org: OrgInput!) {
  upsertOrg(org: $org) {
    id
    name
    installationId
    lastSynced
  }
}Query Variables
{
  "org": {
    "id": 111,
    "name": "TestKen",
    "installationId": 444,
    "lastSynced": 1575645951
  }
}Example retrieval
query getAllOrgs {
  findAllOrgs {
    id
    name
    setting {
      id
      nukeStaleBranches
      nukeStalePRs
    }
  }
}