- fix time input boxes with showSeconds deprecated prop
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -1,5 +1,34 @@
|
||||
import {Kind, visit, parse, print} from "graphql";
|
||||
|
||||
export const numberOperators = [
|
||||
{value: "_eq", label: "Equals"},
|
||||
{value: "_ne", label: "Not Equals"},
|
||||
{value: "_gt", label: "Greater Than"},
|
||||
{value: "_lt", label: "Less Than"},
|
||||
{value: "_gte", label: "Greater Than or Equal To"},
|
||||
{value: "_lte", label: "Less Than or Equal To"},
|
||||
];
|
||||
|
||||
export const stringOperators = [
|
||||
{value: "_eq", label: "Equals", type: 'string'},
|
||||
{value: "_ne", label: "Not Equals", type: 'string'},
|
||||
{value: "_in", label: "In", type: 'string'},
|
||||
{value: "_nin", label: "Not In", type: 'string'},
|
||||
{value: "_contains", label: "Contains", type: 'string'},
|
||||
{value: "_ncontains", label: "Does Not Contain", type: 'string'},
|
||||
];
|
||||
|
||||
export const numberSorters = [
|
||||
{value: "asc", label: "Ascending"},
|
||||
{value: "desc", label: "Descending"},
|
||||
];
|
||||
|
||||
export const stringSorters = [
|
||||
{value: "asc", label: "Alphabetically Ascending"},
|
||||
{value: "desc", label: "Alphabetically Descending"},
|
||||
];
|
||||
|
||||
|
||||
/* eslint-disable no-loop-func */
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user