remove files left after move
This commit is contained in:
		
							parent
							
								
									22494667cd
								
							
						
					
					
						commit
						698185a55b
					
				| @ -6,7 +6,6 @@ | ||||
|     <artifactId>spring-boot-libraries</artifactId> | ||||
|     <name>spring-boot-libraries</name> | ||||
|     <packaging>war</packaging> | ||||
|     <description>This is simple boot application for Spring boot actuator test</description> | ||||
| 
 | ||||
|     <parent> | ||||
|         <groupId>com.baeldung.spring-boot-modules</groupId> | ||||
|  | ||||
| @ -1,24 +0,0 @@ | ||||
| type Post { | ||||
|     id: ID! | ||||
|     title: String! | ||||
|     text: String! | ||||
|     category: String | ||||
|     author: Author | ||||
| } | ||||
| 
 | ||||
| type Author { | ||||
|     id: ID! | ||||
|     name: String! | ||||
|     thumbnail: String | ||||
|     posts: [Post]! | ||||
| } | ||||
| 
 | ||||
| # The Root Query for the application | ||||
| type Query { | ||||
|     recentPosts(count: Int, offset: Int): [Post]! | ||||
| } | ||||
| 
 | ||||
| # The Root Mutation for the application | ||||
| type Mutation { | ||||
|     writePost(title: String!, text: String!, category: String, author: String!) : Post! | ||||
| } | ||||
| @ -1,169 +0,0 @@ | ||||
| { | ||||
|     "info": { | ||||
|         "_postman_id": "910d9690-f629-4491-bbbd-adb30982a386", | ||||
|         "name": "GraphQL collection", | ||||
|         "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | ||||
|     }, | ||||
|     "item": [ | ||||
|         { | ||||
|             "name": "mutations", | ||||
|             "item": [ | ||||
|                 { | ||||
|                     "name": "writePost", | ||||
|                     "request": { | ||||
|                         "method": "POST", | ||||
|                         "header": [], | ||||
|                         "body": { | ||||
|                             "mode": "graphql", | ||||
|                             "graphql": { | ||||
|                                 "query": "mutation writePost ($title: String!, $text: String!, $category: String) {\n    writePost (title: $title, text: $text, category: $category) {\n        id\n        title\n        text\n        category\n    }\n}", | ||||
|                                 "variables": "{\n  \"title\": \"\",\n  \"text\": \"\",\n  \"category\": \"\"\n}" | ||||
|                             }, | ||||
|                             "options": { | ||||
|                                 "graphql": {} | ||||
|                             } | ||||
|                         }, | ||||
|                         "url": { | ||||
|                             "raw": "http://localhost:9090/springbootapp/graphql", | ||||
|                             "protocol": "http", | ||||
|                             "host": [ | ||||
|                                 "localhost" | ||||
|                             ], | ||||
|                             "port": "9090", | ||||
|                             "path": [ | ||||
|                                 "springbootapp", | ||||
|                                 "graphql" | ||||
|                             ] | ||||
|                         } | ||||
|                     }, | ||||
|                     "response": [] | ||||
|                 } | ||||
|             ], | ||||
|             "protocolProfileBehavior": {} | ||||
|         }, | ||||
|         { | ||||
|             "name": "queries", | ||||
|             "item": [ | ||||
|                 { | ||||
|                     "name": "get recent posts", | ||||
|                     "request": { | ||||
|                         "method": "POST", | ||||
|                         "header": [], | ||||
|                         "body": { | ||||
|                             "mode": "graphql", | ||||
|                             "graphql": { | ||||
|                                 "query": "{\r\n    recentPosts(count: 10, offset: 0) {\r\n        id\r\n        title\r\n        category\r\n        text\r\n        author {\r\n            id\r\n            name\r\n            thumbnail\r\n        }\r\n    }\r\n}", | ||||
|                                 "variables": "" | ||||
|                             } | ||||
|                         }, | ||||
|                         "url": { | ||||
|                             "raw": "http://localhost:9090/springbootapp/graphql", | ||||
|                             "protocol": "http", | ||||
|                             "host": [ | ||||
|                                 "localhost" | ||||
|                             ], | ||||
|                             "port": "9090", | ||||
|                             "path": [ | ||||
|                                 "springbootapp", | ||||
|                                 "graphql" | ||||
|                             ] | ||||
|                         } | ||||
|                     }, | ||||
|                     "response": [] | ||||
|                 }, | ||||
|                 { | ||||
|                     "name": "recentPosts - variables", | ||||
|                     "request": { | ||||
|                         "method": "POST", | ||||
|                         "header": [], | ||||
|                         "body": { | ||||
|                             "mode": "graphql", | ||||
|                             "graphql": { | ||||
|                                 "query": "query recentPosts ($count: Int, $offset: Int) {\n    recentPosts (count: $count, offset: $offset) {\n        id\n        title\n        text\n        category\n    }\n}", | ||||
|                                 "variables": "{\n  \"count\": 1,\n  \"offset\": 0\n}" | ||||
|                             }, | ||||
|                             "options": { | ||||
|                                 "graphql": {} | ||||
|                             } | ||||
|                         }, | ||||
|                         "url": { | ||||
|                             "raw": "http://localhost:9090/springbootapp/graphql", | ||||
|                             "protocol": "http", | ||||
|                             "host": [ | ||||
|                                 "localhost" | ||||
|                             ], | ||||
|                             "port": "9090", | ||||
|                             "path": [ | ||||
|                                 "springbootapp", | ||||
|                                 "graphql" | ||||
|                             ] | ||||
|                         } | ||||
|                     }, | ||||
|                     "response": [] | ||||
|                 }, | ||||
|                 { | ||||
|                     "name": "get recent posts - raw", | ||||
|                     "request": { | ||||
|                         "method": "POST", | ||||
|                         "header": [ | ||||
|                             { | ||||
|                                 "key": "Content-Type", | ||||
|                                 "value": "application/graphql", | ||||
|                                 "type": "text" | ||||
|                             } | ||||
|                         ], | ||||
|                         "body": { | ||||
|                             "mode": "raw", | ||||
|                             "raw": "query {\r\n    recentPosts(count: 10, offset: 0) {\r\n        id\r\n        title\r\n        category\r\n        author {\r\n            id\r\n            name\r\n            thumbnail\r\n        }\r\n    }\r\n}" | ||||
|                         }, | ||||
|                         "url": { | ||||
|                             "raw": "http://localhost:9090/springbootapp/graphql", | ||||
|                             "protocol": "http", | ||||
|                             "host": [ | ||||
|                                 "localhost" | ||||
|                             ], | ||||
|                             "port": "9090", | ||||
|                             "path": [ | ||||
|                                 "springbootapp", | ||||
|                                 "graphql" | ||||
|                             ] | ||||
|                         } | ||||
|                     }, | ||||
|                     "response": [] | ||||
|                 } | ||||
|             ], | ||||
|             "protocolProfileBehavior": {} | ||||
|         } | ||||
|     ], | ||||
|     "event": [ | ||||
|         { | ||||
|             "listen": "prerequest", | ||||
|             "script": { | ||||
|                 "id": "b54f267b-c450-4f2d-8105-2f23bab4c922", | ||||
|                 "type": "text/javascript", | ||||
|                 "exec": [ | ||||
|                     "" | ||||
|                 ] | ||||
|             } | ||||
|         }, | ||||
|         { | ||||
|             "listen": "test", | ||||
|             "script": { | ||||
|                 "id": "00b575be-03d4-4b29-b137-733ead139638", | ||||
|                 "type": "text/javascript", | ||||
|                 "exec": [ | ||||
|                     "" | ||||
|                 ] | ||||
|             } | ||||
|         } | ||||
|     ], | ||||
|     "variable": [ | ||||
|         { | ||||
|             "id": "20a274e5-6d51-40d6-81cb-af9eb115b21b", | ||||
|             "key": "url", | ||||
|             "value": "", | ||||
|             "type": "string" | ||||
|         } | ||||
|     ], | ||||
|     "protocolProfileBehavior": {} | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user