Подписки работают на игровой площадке и возвращают ожидаемые поля, но не в клиенте apollo graphql, ничего не возвращаются!Вот запрос, который используется и на детской площадке, и в клиенте:
export const PARTY_SUBSCRIPTION = gql`
subscription onPartyUpdated($hostname: String!) {
party(hostname: $hostname) {
mutation
node {
id
users {
username
}
open
hostname
}
}
}
`;
И это мой файл конфигурации клиента apollo:
const DEV_DB_ENDPOINT = "http://192.168.1.3:4000/";
const authLink = setContext(async (_, { headers }) => {
const token = await AsyncStorage.getItem("userToken");
return {
headers: {
...headers,
authorization: token ? `Bearer ${token}` : ""
}
};
});
const wsLink = new WebSocketLink({
uri: "ws://localhost:5000/",
options: {
reconnect: true
}
});
const httpLink = new HttpLink({
uri: DEV_DB_ENDPOINT,
credentials: "same-origin"
});
const link = split(
// split based on operation type
({ query }) => {
const definition = getMainDefinition(query);
console.log(query);
return (
definition.kind === "OperationDefinition" &&
definition.operation === "subscription"
);
},
wsLink,
httpLink
);
const client = new ApolloClient({
link: ApolloLink.from([
onError(({ graphQLErrors, networkError }) => {
if (graphQLErrors)
graphQLErrors.map(({ message, locations, path }) =>
console.log(
`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`
)
);
if (networkError) console.log(`[Network error]: ${networkError}`);
}),
authLink,
link
]),
cache: new InMemoryCache()
});
export { client };
, а это мой компонент подписки
<Subscription
subscription={PARTY_SUBSCRIPTION}
variables={{
hostname: "Amir004"
}}
onError={err => console.log(err)}
onCompleted={data => console.log(data)}
>
{() => {
return <Text>Current list of friends in your party : </Text>;
}}
</Subscription>
Компонент не console.log ни ошибок, ни данных!
Любая помощь действительно приветствуется:)