Prevent GraphQL query/mutation name collisions
Query and mutation names are defined globally. If multiple apps have a mutation called e.g. checkIn
, there is a problem.
A possible solution is using the app name as a prefix, similar to URLs (multiple apps can have /checkin
, because it becomes /app1/checkin
and /app2/checkin
).