clearCollection

Remove all data of a collection

removeItem({object to delete} , (success)=> {}, (error)=> {})

How to use:

my_collection.clearCollection(
    () =>  // removed successfully,
    (error) => alert(error) 
);

Arguments:

Example:

import React,{useEffect} from 'react';
import {Text} from 'react-native';
import {Pleex} from 'pleex';

const App = () => {
  
  // Create collection
  const my_collection = Pleex.collection('myCollection');
  
  // Get all data saved
  my_collection.clearCollection(
    () =>  // Success,
    (error) => alert(error) 
  );
  
  return (
    <>
      <Text>Try clear collection api</Text>
    </>
  );

};

export default App;

Last updated