@@ -236,16 +236,16 @@ At this moment ProcessGraphQL handles most of the ProcessWire's core fieldtypes.
236236- FieldtypeTextarea
237237- FieldtypeTextareaLanguage
238238- FieldtypeURL
239- - FieldtypeMapMarker (via [ FieldtypeMapMarkerGraphQL ] [ map-marker-graphql ] )
239+ - FieldtypeMapMarker (via [ GraphQLFieldtypeMapMarker ] [ map-marker-graphql ] )
240240
241241### Third-party Fieldtypes Support
242242You can add support for any third-party fieldtype by creating a module for it. The example module
243- that you can refer to is [ FieldtypeMapMarkerGraphQL ] [ map-marker-graphql ] that adds support for FieldtypeMapMarker
243+ that you can refer to is [ GraphQLFieldtypeMapMarker ] [ map-marker-graphql ] that adds support for FieldtypeMapMarker
244244fieldtype. Below are the basic requirements that this kind of modules should fulfill.
245245
246246#### Naming of the Module
247247- Name your module exactly as the Fieldtype module you are adding support for with ` GraphQL ` suffix.
248- So for example ` FieldtypeMapMarkerGraphQL ` adds support for ` FieldtypeMapMarker ` .
248+ So for example ` GraphQLFieldtypeMapMarker ` adds support for ` FieldtypeMapMarker ` .
249249
250250#### Required methods
251251There are three required methods.
@@ -263,7 +263,7 @@ integer (id of the page) as a value.
263263Given the ` $page ` , ` $field ` and a ` $value ` , the method sets the value to the page's given field.
264264
265265> Note: The GraphQL api is built upon [ Youshido/GraphQL] [ youshido-graphql ] library. So the methods above should
266- > be built using that library. Please see [ FieldtypeMapMarkerGraphQL ] [ map-marker-graphql ] module for reference.
266+ > be built using that library. Please see [ GraphQLFieldtypeMapMarker ] [ map-marker-graphql ] module for reference.
267267
268268When your module is ready, just install it and it should be automatically used by ProcessGraphQL and
269269your fieldtype should be available via your GraphQL api.
@@ -288,5 +288,5 @@ your fieldtype should be available via your GraphQL api.
288288[ travis-ci-badge ] : https://www.travis-ci.org/dadish/ProcessGraphQL.svg?branch=master
289289[ travis-ci ] : https://travis-ci.org/dadish/ProcessGraphQL/
290290[ latest-release ] : https://github.com/dadish/ProcessGraphQL/releases/latest
291- [ map-marker-graphql ] : https://github.com/dadish/FieldtypeMapMarkerGraphQL
291+ [ map-marker-graphql ] : https://github.com/dadish/GraphQLFieldtypeMapMarker
292292[ youshido-graphql ] : https://github.com/youshido/graphql
0 commit comments