Vocabularymediawiki.
apiInputsparams | an assoc of API call parameters |
quot1 | a quotation with stack effect ( params -- obj assoc ) |
quot2 | a quotation with stack effect ( ... -- ... ) |
OutputsWord descriptionCalls the API until all input is consumed.
NotesThis word is used in the implementation of
query.
ExamplesUSING: mediawiki.api assocs kernel ;
{
{ "meta" "tokens" }
{ "type" "watch" }
} query "watchtoken" of
"Category:Concatenative programming languages"
"Category:Stack-oriented programming languages"
[| token cat | {
{ "action" "watch" }
{ "generator" "categorymembers" }
{ "gcmtitle" cat }
{ "gcmnamespace" 0 }
{ "gcmtype" "page" }
{ "gcmlimit" 50 }
{ "token" token }
} [ api-call dup ] [ ] call-continue drop ] bi-curry@ bi
Definition