diff --git a/.vscode/settings.json b/.vscode/settings.json
index 09a697c..bbf7d45 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,10 +1,6 @@
{
"css.validate": false,
"scss.validate": false,
- "editor.quickSuggestions": {
- "strings": true,
- "other": true,
- },
"cSpell.words": [
"Formik"
]
diff --git a/graphql.schema.json b/graphql.schema.json
index e87cf4e..9a2cdf4 100644
--- a/graphql.schema.json
+++ b/graphql.schema.json
@@ -1045,7 +1045,7 @@
"deprecationReason": null
},
{
- "name": "findPipelines",
+ "name": "listPipelines",
"description": null,
"args": [
{
@@ -1311,7 +1311,7 @@
"description": null,
"args": [
{
- "name": "Pipeline",
+ "name": "pipeline",
"description": null,
"type": {
"kind": "NON_NULL",
diff --git a/src/components/app.tsx b/src/components/app.tsx
index 737d761..9534b9b 100644
--- a/src/components/app.tsx
+++ b/src/components/app.tsx
@@ -1,13 +1,13 @@
-import { ApolloClient, ApolloProvider, InMemoryCache } from '@apollo/client';
+import { ApolloProvider } from '@apollo/client';
import { Fragment, FunctionalComponent, h } from 'preact';
import { ProjectPanel } from './projects/project-panel';
import styles from './app.scss';
import { OverlayContainer } from './commons/overlay/overlay';
import { useObserver } from 'mobx-react';
-import { appStore } from '../app.store';
import Router, { Route } from 'preact-router';
import { ProjectDetails } from '../routes/projects/project-details';
import { createApolloClient } from '../units/apollo-client';
+import { PipelineEditor } from '../routes/pipelines/pipeline-editor';
const client = createApolloClient();
@@ -32,6 +32,10 @@ const Board = () => {
+ }
+ />