Skip to content

Commit

Permalink
Improve naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Jul 5, 2016
1 parent 545eb4c commit 4e4c89f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions schema/fair.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
GraphQLNonNull,
} from 'graphql';

const OrganizerType = new GraphQLObjectType({
const FairOrganizerType = new GraphQLObjectType({
name: 'organizer',
fields: {
profile_id: {
Expand Down Expand Up @@ -81,7 +81,7 @@ const FairType = new GraphQLObjectType({
resolve: ({ published }) => published,
},
organizer: {
type: OrganizerType,
type: FairOrganizerType,
},
}),
});
Expand Down
2 changes: 1 addition & 1 deletion schema/sale/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function auctionState({ start_at, end_at, live_start_at }) {
}

const BidIncrement = new GraphQLObjectType({
name: 'BidIncrements',
name: 'BidIncrement',
fields: {
from: {
type: GraphQLInt,
Expand Down

0 comments on commit 4e4c89f

Please sign in to comment.