mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-11-05 19:25:09 +01:00
16 lines
294 B
GraphQL
16 lines
294 B
GraphQL
|
query TweetHydration($rest_id: NumericString!) {
|
||
|
tweet_result_by_rest_id(rest_id: $rest_id, safety_level: ForDevelopmentOnly) {
|
||
|
result {
|
||
|
... on Tweet {
|
||
|
core {
|
||
|
user {
|
||
|
legacy {
|
||
|
id_str
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|