There are a few JQL syntax bits to get you started:
AND
--- allows you to add qualifiers to a list!= Thing
--- target one thingis in (List, Of, Things)
--- target a bunch of things (Done, Closed, Resolved) typicallynot in (List, of, Things)
--- do not include a bunch of things-1w
--- relative time. You can also use -1d for day"2015/3/15"
--- specific dates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useCallback, useEffect, useState } from 'react'; | |
/** | |
* HoC for prefetching component data from remote server. | |
* | |
* @param fetchData(props) - async function generator for fetching data | |
* @param getInitialState(props)? - function to get initialState | |
* @param depsFn(props)? - function to set deps for useEffect | |
*/ | |
function prepopulate(fetchData, getInitialState, depsFn) { |