Mike
06/22/2019, 12:15 AMshiftcard
06/22/2019, 12:33 AMshiftcard
06/22/2019, 12:33 AMshiftcard
06/22/2019, 12:37 AMshiftcard
06/22/2019, 1:12 AMshiftcard
06/22/2019, 1:12 AMshiftcard
06/22/2019, 1:12 AMshiftcard
06/22/2019, 1:13 AMshiftcard
06/22/2019, 1:14 AMshiftcard
06/22/2019, 1:18 AMshiftcard
06/22/2019, 1:18 AMfuchenxu
06/22/2019, 11:05 AMJay
06/23/2019, 1:24 AMJay
06/23/2019, 1:25 AMJoseph
06/23/2019, 5:28 AMlewisedc
06/23/2019, 11:42 AMandrux
06/23/2019, 9:23 PMgraphql
?andrux
06/23/2019, 9:23 PMandrux
06/23/2019, 9:26 PM...
const CONVERSATIONS = gql`
query GetConversations($userId: ID!) {
conversations(
where: {
members_some: {
id: $userId
}
}
) {
id
members {
id
handle
}
messages(last: 1) {
id
text
sender {
display
}
createdAt
}
createdAt
}
}
`
export default graphql(CONVERSATIONS, { name: 'conversationsQuery' })(Chat);
andrux
06/23/2019, 9:26 PM$userId
comes from a previous screenâs propsandrux
06/23/2019, 9:29 PMexport default graphql(CONVERSATIONS, { name: 'conversationsQuery', variables: { userId: "" } })(Chat);
or similar â I had it like that before and it worked but a hardcoded id wonât help đAdam Woods
06/23/2019, 10:11 PMBill Pliske
06/24/2019, 1:23 AMexit
, logout
, quitting terminal ⊠you name it. But whenever I restart terminal, or even the terminal in VS Code ⊠it pops me right back into my SSH root in DO. So weird.
Thoughts?Andre Coetzee
06/24/2019, 8:49 AMjdoyle112
06/24/2019, 2:47 PMjdoyle112
06/24/2019, 2:48 PMtkvw
06/24/2019, 3:49 PMprisma2
? Is it the alpha branch?Bill Pliske
06/24/2019, 4:02 PMAlvar Lagerlöf
06/24/2019, 4:51 PMvjsingh
06/24/2019, 5:27 PM