import { HMGetCommand } from "https://deno.land/x/upstash_redis@v1.20.5-canary.0/pkg/commands/mod.ts";
hmget returns an object of all requested fields from a hash The field values are returned as an object like this:
{[fieldName: string]: T | null}
In case the hash does not exist or all fields are empty null
is returned
Constructors
new
HMGetCommand(unnamed 0: [string, string[]], opts?: CommandOptions<(string | null)[], TData | null>)