Skip to content

Commit

Permalink
fix Geopoint Input type
Browse files Browse the repository at this point in the history
  • Loading branch information
dvesh3 committed Sep 19, 2019
1 parent 9236939 commit 258e652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GraphQL/Type/GeopointInputType.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public function build(&$config)
$resolver->setGraphQLService($this->getGraphQlService());

$config['fields'] = [
'longitude' => Type::int(),
'latitude' => Type::int(),
'longitude' => Type::float(),
'latitude' => Type::float(),
];
}
}

0 comments on commit 258e652

Please sign in to comment.