pub const QUERY: &str = "mutation CreateReleaseMutation($branch: String!, $description: String!, $network: String! $links: [ReleaseAssetLinkInput!]!) {\n  releaseCreate(input: {\n    clientMutationId: \"duniter-v2s-xtask\"\n    description: $description\n    milestones: []\n    name: $network\n    projectPath: \"nodes/rust/duniter-v2s\"\n    ref: $branch\n    tagName: $network\n    assets: {\n      links: $links\n    }\n  }) {\n    errors\n  }\n}\n";