Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Moved sample tools to different package because of conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
oliemansm committed Nov 17, 2018
1 parent 529f2f3 commit 2743abe
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot.resolvers;
package com.graphql.sample.boot;

class Comment {

Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot;
package com.graphql.sample.boot;

import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import graphql.servlet.ObjectMapperConfigurer;
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot.resolvers;
package com.graphql.sample.boot;

import com.coxautodev.graphql.tools.GraphQLMutationResolver;
import java.util.Random;
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot.resolvers;
package com.graphql.sample.boot;

public class Post {

Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot.resolvers;
package com.graphql.sample.boot;

import com.coxautodev.graphql.tools.GraphQLResolver;
import org.springframework.stereotype.Component;
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot.resolvers;
package com.graphql.sample.boot;

import com.coxautodev.graphql.tools.GraphQLQueryResolver;
import org.springframework.stereotype.Component;
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot
package com.graphql.sample.boot


import com.graphql.spring.boot.test.GraphQLTestTemplate
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot;
package com.graphql.sample.boot;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
Expand Down
@@ -1,4 +1,4 @@
package com.oembedler.moon.graphql.boot;
package com.graphql.sample.boot;

import org.junit.Ignore;
import org.junit.Test;
Expand Down
Expand Up @@ -29,6 +29,7 @@
@Configuration
@ConditionalOnClass(SchemaParser.class)
@AutoConfigureAfter({JacksonAutoConfiguration.class})
@EnableConfigurationProperties(GraphQLToolsProperties.class)
public class GraphQLJavaToolsAutoConfiguration {

@Autowired(required = false)
Expand Down

0 comments on commit 2743abe

Please sign in to comment.