Skip to content

Instantly share code, notes, and snippets.

@wesleyalmd
Created January 23, 2023 19:04
Show Gist options
  • Save wesleyalmd/886732150c8c336d75563f280db7a701 to your computer and use it in GitHub Desktop.
Save wesleyalmd/886732150c8c336d75563f280db7a701 to your computer and use it in GitHub Desktop.
graphql - get events running land
query getProductsBySku {
products(
filter: {
sku: {
in: [
"GPR2023-SP"
"Brinde 2022 - Funcionários"
"CPR23SP2-MANIACS-SSA"
"MFR23FL1-42KFLORIPA-MANIACS-SSA"
"MRJ23RJ1-SSA"
"MRJ23RJ1-BH"
"CCLO23RF"
"RPCCLO23FT"
"CCLO23FT"
"RPCCLO23SSA"
"CCLO23SSA"
"TBT23ST2ETP4"
"RPTBT23ST2ETP4"
"TBT23ST2ETP3"
"RPTBT23ST2ETP3"
"RPTBT23ST2"
"TBT23ST2"
"CDB22SP2"
]
}
}
pageSize: 20
) {
items {
name
}
total_count
filters {
name
filter_items_count
request_var
filter_items {
label
value_string
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment