mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
export default function (data) {
|
|
return `
|
|
mutation {
|
|
u1_friends_u2: AddUserFriends(
|
|
from: { id: "u1" },
|
|
to: { id: "u2" }
|
|
) { from { id } }
|
|
u1_friends_u3: AddUserFriends(
|
|
from: { id: "u1" },
|
|
to: { id: "u3" }
|
|
) { from { id } }
|
|
}
|
|
`
|
|
}
|