diff --git a/apps/graphpolaris-e2e/src/integration/app/app.spec.ts b/apps/graphpolaris-e2e/src/integration/app/app.spec.ts
deleted file mode 100644
index 161316b77d71c0a7dd2574203d7dbcb26e271eef..0000000000000000000000000000000000000000
--- a/apps/graphpolaris-e2e/src/integration/app/app.spec.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-describe('graphpolaris: App component', () => {
-  beforeEach(() => cy.visit('/iframe.html?id=app--primary'));
-    
-    it('should render the component', () => {
-      cy.get('h1').should('contain', 'Welcome to App!');
-    });
-});
diff --git a/apps/graphpolaris-e2e/.eslintrc.json b/apps/web-graphpolaris-e2e/.eslintrc.json
similarity index 80%
rename from apps/graphpolaris-e2e/.eslintrc.json
rename to apps/web-graphpolaris-e2e/.eslintrc.json
index 4c5989b23b5aa8cc7aba2a07d1ae7daee19c1555..8481bd307c98f2e8dd6c2b3feccbf31747fcb759 100644
--- a/apps/graphpolaris-e2e/.eslintrc.json
+++ b/apps/web-graphpolaris-e2e/.eslintrc.json
@@ -1,5 +1,5 @@
 {
-  "extends": ["plugin:cypress/recommended", "../../.eslintrc.json"],
+  "extends": ["plugin:cypress/recommended", "..\\..\\.eslintrc.json"],
   "ignorePatterns": ["!**/*"],
   "overrides": [
     {
diff --git a/apps/graphpolaris-e2e/cypress.json b/apps/web-graphpolaris-e2e/cypress.json
similarity index 62%
rename from apps/graphpolaris-e2e/cypress.json
rename to apps/web-graphpolaris-e2e/cypress.json
index 9ad16ab4d4640ce02e9a5e25cd167219dfe12933..bf3f402a2779581f1764be1f732331b8d726a71f 100644
--- a/apps/graphpolaris-e2e/cypress.json
+++ b/apps/web-graphpolaris-e2e/cypress.json
@@ -6,7 +6,7 @@
   "supportFile": "./src/support/index.ts",
   "pluginsFile": false,
   "video": true,
-  "videosFolder": "../../dist/cypress/apps/graphpolaris-e2e/videos",
-  "screenshotsFolder": "../../dist/cypress/apps/graphpolaris-e2e/screenshots",
+  "videosFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/videos",
+  "screenshotsFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/screenshots",
   "chromeWebSecurity": false
 }
diff --git a/apps/graphpolaris-e2e/project.json b/apps/web-graphpolaris-e2e/project.json
similarity index 69%
rename from apps/graphpolaris-e2e/project.json
rename to apps/web-graphpolaris-e2e/project.json
index 9505a27eb919f1d6a6d5afa9c05a1b036ba1cf73..18496398618d57bdf5070a26d5863d6601452d7b 100644
--- a/apps/graphpolaris-e2e/project.json
+++ b/apps/web-graphpolaris-e2e/project.json
@@ -1,12 +1,12 @@
 {
-  "root": "apps/graphpolaris-e2e",
-  "sourceRoot": "apps/graphpolaris-e2e/src",
+  "root": "apps/web-graphpolaris-e2e",
+  "sourceRoot": "apps/web-graphpolaris-e2e/src",
   "projectType": "application",
   "targets": {
     "e2e": {
       "executor": "@nrwl/cypress:cypress",
       "options": {
-        "cypressConfig": "apps/graphpolaris-e2e/cypress.json",
+        "cypressConfig": "apps/web-graphpolaris-e2e/cypress.json",
         "devServerTarget": "web-graphpolaris:serve"
       },
       "configurations": {
@@ -19,7 +19,7 @@
       "executor": "@nrwl/linter:eslint",
       "outputs": ["{options.outputFile}"],
       "options": {
-        "lintFilePatterns": ["apps/graphpolaris-e2e/**/*.{js,ts}"]
+        "lintFilePatterns": ["apps/web-graphpolaris-e2e/**/*.{js,ts}"]
       }
     }
   },
diff --git a/apps/graphpolaris-e2e/src/fixtures/example.json b/apps/web-graphpolaris-e2e/src/fixtures/example.json
similarity index 100%
rename from apps/graphpolaris-e2e/src/fixtures/example.json
rename to apps/web-graphpolaris-e2e/src/fixtures/example.json
diff --git a/apps/graphpolaris-e2e/src/integration/app.spec.ts b/apps/web-graphpolaris-e2e/src/integration/app.spec.ts
similarity index 100%
rename from apps/graphpolaris-e2e/src/integration/app.spec.ts
rename to apps/web-graphpolaris-e2e/src/integration/app.spec.ts
diff --git a/apps/web-graphpolaris-e2e/src/integration/app/app.spec.ts b/apps/web-graphpolaris-e2e/src/integration/app/app.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..384084159570b29e0078b8fbf4328e220129b6bc
--- /dev/null
+++ b/apps/web-graphpolaris-e2e/src/integration/app/app.spec.ts
@@ -0,0 +1,7 @@
+describe('graphpolaris: App component', () => {
+  beforeEach(() => cy.visit('/iframe.html?id=app--primary'));
+
+  it('should render the component', () => {
+    cy.get('h1').should('contain', 'Welcome to App!');
+  });
+});
diff --git a/apps/graphpolaris-e2e/src/support/app.po.ts b/apps/web-graphpolaris-e2e/src/support/app.po.ts
similarity index 100%
rename from apps/graphpolaris-e2e/src/support/app.po.ts
rename to apps/web-graphpolaris-e2e/src/support/app.po.ts
diff --git a/apps/graphpolaris-e2e/src/support/commands.ts b/apps/web-graphpolaris-e2e/src/support/commands.ts
similarity index 100%
rename from apps/graphpolaris-e2e/src/support/commands.ts
rename to apps/web-graphpolaris-e2e/src/support/commands.ts
diff --git a/apps/graphpolaris-e2e/src/support/index.ts b/apps/web-graphpolaris-e2e/src/support/index.ts
similarity index 100%
rename from apps/graphpolaris-e2e/src/support/index.ts
rename to apps/web-graphpolaris-e2e/src/support/index.ts
diff --git a/apps/graphpolaris-e2e/tsconfig.json b/apps/web-graphpolaris-e2e/tsconfig.json
similarity index 100%
rename from apps/graphpolaris-e2e/tsconfig.json
rename to apps/web-graphpolaris-e2e/tsconfig.json
diff --git a/workspace.json b/workspace.json
index 85a7a2fcf6467711e8e157a9bc72f910371beb1b..1a59e05a31f38abe3f9085968e95163374b70590 100644
--- a/workspace.json
+++ b/workspace.json
@@ -1,8 +1,8 @@
 {
   "version": 2,
   "projects": {
-    "graphpolaris-e2e": "apps/graphpolaris-e2e",
     "shared-data-access-store": "libs/shared/data-access/store",
-    "web-graphpolaris": "apps/web-graphpolaris"
+    "web-graphpolaris": "apps/web-graphpolaris",
+    "web-graphpolaris-e2e": "apps/web-graphpolaris-e2e"
   }
 }