Skip to content

Commit 8811adf

Browse files
committed
organize classes in directories
1 parent bee616f commit 8811adf

File tree

88 files changed

+306
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+306
-227
lines changed

src/main/java/graphql/annotations/GraphQLBatched.java renamed to src/main/java/graphql/annotations/annotations/GraphQLBatched.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLConnection.java renamed to src/main/java/graphql/annotations/annotations/GraphQLConnection.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
16+
17+
import graphql.annotations.dataFetchers.connection.Connection;
18+
import graphql.annotations.dataFetchers.connection.DispatchingConnection;
1619

1720
import java.lang.annotation.ElementType;
1821
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLDataFetcher.java renamed to src/main/java/graphql/annotations/annotations/GraphQLDataFetcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import graphql.schema.DataFetcher;
1818

src/main/java/graphql/annotations/GraphQLDefaultValue.java renamed to src/main/java/graphql/annotations/annotations/GraphQLDefaultValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLDeprecate.java renamed to src/main/java/graphql/annotations/annotations/GraphQLDeprecate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLDescription.java renamed to src/main/java/graphql/annotations/annotations/GraphQLDescription.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLField.java renamed to src/main/java/graphql/annotations/annotations/GraphQLField.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLID.java renamed to src/main/java/graphql/annotations/annotations/GraphQLID.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLInvokeDetached.java renamed to src/main/java/graphql/annotations/annotations/GraphQLInvokeDetached.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

src/main/java/graphql/annotations/GraphQLMutation.java renamed to src/main/java/graphql/annotations/annotations/GraphQLMutation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
*/
15-
package graphql.annotations;
15+
package graphql.annotations.annotations;
1616

1717
import java.lang.annotation.ElementType;
1818
import java.lang.annotation.Retention;

0 commit comments

Comments
 (0)